diff --git a/src/main/java/com/compare/xsd/comparison/MultiLineChangeTextReport.java b/src/main/java/com/compare/xsd/comparison/MultiLineChangeTextReport.java index 0998421..ee6010f 100644 --- a/src/main/java/com/compare/xsd/comparison/MultiLineChangeTextReport.java +++ b/src/main/java/com/compare/xsd/comparison/MultiLineChangeTextReport.java @@ -215,6 +215,7 @@ private void createChangeMessage(Change c){ boolean isFixedDefaultByEnumeration = newEnumerationList.size() == 1; newEnumerationList.removeAll(c.oldNode.getEnumeration()); if(newEnumerationList.size() > 0){ + c.setReportHeader(c.getReportHeader() + "\n\t\t\tadded: " + newEnumerationList.toString()); if(isFixedDefaultByEnumeration) {// if single enumeration (new) if (c.oldNode.getFixedValue() != null && c.oldNode.getFixedValue().equals(newEnumerationList.get(0))) { c.setReportHeader(c.getReportHeader() + (" (no semantic change, as new single enumeration value existed as previous fixed default: " + c.newNode.getFixedValue() + ")")); @@ -224,6 +225,7 @@ private void createChangeMessage(Change c){ ArrayList oldEnumerationList = new ArrayList<>(c.oldNode.getEnumeration()); boolean wasFixedDefaultByEnumeration = oldEnumerationList.size() == 1; oldEnumerationList.removeAll(c.newNode.getEnumeration()); + c.setReportHeader(c.getReportHeader() + "\n\t\t\tremoved: " + oldEnumerationList.toString()); if(wasFixedDefaultByEnumeration){ // if was a single neumeration (old) if (c.newNode.getFixedValue() != null && c.newNode.getFixedValue().equals(oldEnumerationList.get(0))) { c.setReportHeader(c.getReportHeader() + (" (no semantic change, as removed single enumeration value still exists as fixed default: " + c.newNode.getFixedValue() + ")")); diff --git a/src/main/java/com/compare/xsd/comparison/OnlyNewExtensionsReport.java b/src/main/java/com/compare/xsd/comparison/OnlyNewExtensionsReport.java index 795c187..44642a9 100644 --- a/src/main/java/com/compare/xsd/comparison/OnlyNewExtensionsReport.java +++ b/src/main/java/com/compare/xsd/comparison/OnlyNewExtensionsReport.java @@ -157,7 +157,8 @@ private void createChangeMessage(Change c){ // an enumeration is a restriction of the set of strings // so there have to be some enumeration earlier and if the new enumeration list is longer (it is an extension) if((c.oldNode.getEnumeration() != null && c.oldNode.getEnumeration().size() > 0) && newEnumerationList.size() > 0){ - getModificationStringBuilder().append("\n\t\tExtended enumeration from " + c.oldNode.getEnumeration() + " to " + c.newNode.getEnumeration()); + getModificationStringBuilder().append("\n\t\tExtended enumeration from " + c.oldNode.getEnumeration() + " to " + c.newNode.getEnumeration() + + "\n\t\t\tadded: " + newEnumerationList.toString()); if(isFixedDefaultByEnumeration) {// if single enumeration (new) if (c.oldNode.getFixedValue() != null && c.oldNode.getFixedValue().equals(newEnumerationList.get(0))) { getModificationStringBuilder().append(" (no semantic change, as new single enumeration value existed as previous fixed default: " + c.newNode.getFixedValue() + ")"); diff --git a/src/main/java/com/compare/xsd/comparison/OnlyNewRestrictionsReport.java b/src/main/java/com/compare/xsd/comparison/OnlyNewRestrictionsReport.java index 52d4711..675485e 100644 --- a/src/main/java/com/compare/xsd/comparison/OnlyNewRestrictionsReport.java +++ b/src/main/java/com/compare/xsd/comparison/OnlyNewRestrictionsReport.java @@ -154,7 +154,8 @@ private void createChangeMessage(Change c){ // either enumeration old list was longer or did not exist at all if(oldEnumerationList.size() > 0 || (c.oldNode.getEnumeration() == null || c.oldNode.getEnumeration().size() == 0)){ if(oldEnumerationList.size() > 0){ - getModificationStringBuilder().append("\n\t\tNarrowed enumeration from " + c.oldNode.getEnumeration() + " to " + c.newNode.getEnumeration()); + getModificationStringBuilder().append("\n\t\tNarrowed enumeration from " + c.oldNode.getEnumeration() + " to " + c.newNode.getEnumeration() + + "\n\t\t\tremoved: " + oldEnumerationList.toString()); }else{ getModificationStringBuilder().append("\n\t\tNew restriction by enumeration from " + c.oldNode.getEnumeration() + " to " + c.newNode.getEnumeration()); } diff --git a/src/main/java/com/compare/xsd/comparison/model/xsd/impl/AbstractXsdNode.java b/src/main/java/com/compare/xsd/comparison/model/xsd/impl/AbstractXsdNode.java index 2d7fb68..1e4b61e 100644 --- a/src/main/java/com/compare/xsd/comparison/model/xsd/impl/AbstractXsdNode.java +++ b/src/main/java/com/compare/xsd/comparison/model/xsd/impl/AbstractXsdNode.java @@ -9,10 +9,7 @@ import lombok.extern.slf4j.Slf4j; import org.apache.commons.collections4.CollectionUtils; import org.apache.commons.lang3.StringUtils; -import org.apache.xerces.xs.XSFacet; -import org.apache.xerces.xs.XSMultiValueFacet; -import org.apache.xerces.xs.XSSimpleTypeDefinition; -import org.apache.xerces.xs.XSTypeDefinition; +import org.apache.xerces.xs.*; import java.util.ArrayList; import java.util.List; @@ -62,7 +59,7 @@ public abstract class AbstractXsdNode implements XsdNode { protected Integer totalDigits; protected Integer fractionDigits; protected short compositor; - protected List enumeration = new ArrayList<>(); + protected List enumeration; protected AbstractXsdNode parent; protected Change change; @@ -178,7 +175,7 @@ public static String getUniversalName(String namespace, String name){ public String getXmlValue() { if (StringUtils.isNotEmpty(getFixedValue())) { return getFixedValue(); - } else if (CollectionUtils.isNotEmpty(getEnumeration())) { + } else if (getEnumeration() != null && CollectionUtils.isNotEmpty(getEnumeration())) { return getEnumeration().get(0); } @@ -193,7 +190,7 @@ public String getXmlValue() { public String getXmlComment() { String comment = ""; - if (CollectionUtils.isNotEmpty(getEnumeration())) { + if (getEnumeration() != null && CollectionUtils.isNotEmpty(getEnumeration())) { comment += " Possible values: " + getEnumeration(); } if (StringUtils.isNotEmpty(getPattern())) { @@ -228,6 +225,23 @@ protected void loadType(XSTypeDefinition typeDefinition) { } */ this.typeName = typeDefinition.getName(); + if(typeDefinition instanceof XSComplexTypeDefinition){ + XSComplexTypeDefinition complexTypeDefinition = (XSComplexTypeDefinition) typeDefinition; + if(complexTypeDefinition.getContentType() == XSComplexTypeDefinition.CONTENTTYPE_SIMPLE){ + XSSimpleTypeDefinition st = complexTypeDefinition.getSimpleType(); + if(this.enumeration == null){ + this.enumeration = new ArrayList<>(); + } + this.enumeration = st.getLexicalEnumeration(); + } + }else if(typeDefinition instanceof XSSimpleTypeDefinition){ + if(this.enumeration == null){ + this.enumeration = new ArrayList<>(); + } + this.enumeration = ((XSSimpleTypeDefinition)typeDefinition).getLexicalEnumeration(); + }else { + System.out.println("This story does not end up!"); + } } /** @@ -323,7 +337,12 @@ protected void loadSimpleType(XSSimpleTypeDefinition simpleType) { switch (facet.getFacetKind()) { case XSSimpleTypeDefinition.FACET_ENUMERATION: - this.enumeration.addAll(facet.getLexicalFacetValues()); + if(this.enumeration == null){ + this.enumeration = new ArrayList<>(); + } + // has already being added earlier + assert(this.enumeration.equals(facet.getLexicalFacetValues())); + //this.enumeration.addAll(facet.getLexicalFacetValues()); break; case XSSimpleTypeDefinition.FACET_PATTERN: this.pattern = String.join(", ", facet.getLexicalFacetValues()); diff --git a/src/test/java/com/compare/xsd/comparison/XsdComparerTest.java b/src/test/java/com/compare/xsd/comparison/XsdComparerTest.java index b75f365..451b481 100644 --- a/src/test/java/com/compare/xsd/comparison/XsdComparerTest.java +++ b/src/test/java/com/compare/xsd/comparison/XsdComparerTest.java @@ -85,6 +85,8 @@ public void multiComparisonTest() throws IOException { String facets2 = XSD_DIR + "facets2.xsd"; String fixedValueVariant1 = XSD_DIR + "fixedValueVariant1.xsd"; String fixedValueVariant2 = XSD_DIR + "fixedValueVariant2.xsd"; + String contentChange1 = XSD_DIR + "contentChange1.xsd"; + String contentChange2 = XSD_DIR + "contentChange2.xsd"; Boolean compareCorrect = Boolean.TRUE; // compareCorrect &= compareTwoXsdGrammars(facets1, facets2, TextReport.implementation.ONLY_EXTENSIONS); // compareTwoXsdGrammars(facets1, facets2, TextReport.implementation.MULTI_LINE_CHANGE); @@ -110,6 +112,7 @@ public void multiComparisonTest() throws IOException { compareCorrect &= compareTwoXsdGrammars(facets2, facets1, reportType); compareCorrect &= compareTwoXsdGrammars(fixedValueVariant1, fixedValueVariant2, reportType); compareCorrect &= compareTwoXsdGrammars(fixedValueVariant2, fixedValueVariant1, reportType); + compareCorrect &= compareTwoXsdGrammars(contentChange1, contentChange2, reportType); } assertTrue(compareCorrect,"\nRegression test fails as reference was different!\nNote: If the test fails due to a new output (e.g. programming update) copy the new result over the old reference:\n\t" + TARGET_DIR + "\n\t\tto" + "\n\t" + REFERENCES_DIR); diff --git a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_CrossIndustryInvoice_100pD22B.txt b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_CrossIndustryInvoice_100pD22B.txt index 39965f7..755684c 100644 --- a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_CrossIndustryInvoice_100pD22B.txt +++ b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_CrossIndustryInvoice_100pD22B.txt @@ -2053,6 +2053,7 @@ Modifying attribute: Changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B Changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentType Changed enumeration from [] to [102, 203, 205, 209, 502, 602] + added: [102, 203, 205, 209, 502, 602] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/FormattedIssueDateTime/DateTimeString/@format at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/FormattedIssueDateTime/DateTimeString/@format at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/FormattedIssueDateTime/DateTimeString/@format @@ -2136,6 +2137,7 @@ Modifying attribute: Changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:codelist:standard:UNECE:DateOnlyFormatCode:D21B Changed type from string to DateOnlyFormatCodeContentType Changed enumeration from [] to [2, 3, 4, 101, 102, 105, 106, 107, 110, 609] + added: [2, 3, 4, 101, 102, 105, 106, 107, 110, 609] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementFinancialCard/ValidFromDateTime/DateTimeString/@format at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/ApplicableTradeSettlementFinancialCard/ValidFromDateTime/DateTimeString/@format at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeSettlementFinancialCard/ValidFromDateTime/DateTimeString/@format @@ -2143,7 +2145,8 @@ Modifying attribute: Modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType} new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID @@ -2264,13 +2267,15 @@ Modifying attribute: Modifying attribute: old: @listAgencyID{AdjustmentReasonCodeListAgencyIDContentType}{0..1} in type {AdjustmentReasonCodeType} new: @listAgencyID{AdjustmentReasonCodeListAgencyIDContentType}{0..1} in type {AdjustmentReasonCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/SpecifiedDeliveryAdjustment/ReasonCode/@listAgencyID Modifying attribute: old: @listAgencyID{AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} new: @listAgencyID{AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listAgencyID @@ -2281,35 +2286,40 @@ Modifying attribute: Modifying attribute: old: @listAgencyID{AutomaticDataCaptureMethodCodeListAgencyIDContentType}{0..1} in type {AutomaticDataCaptureMethodCodeType} new: @listAgencyID{AutomaticDataCaptureMethodCodeListAgencyIDContentType}{0..1} in type {AutomaticDataCaptureMethodCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/AutomaticDataCaptureMethodTypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/AutomaticDataCaptureMethodTypeCode/@listAgencyID Modifying attribute: old: @listAgencyID{CargoCategoryCodeListAgencyIDContentType}{0..1} in type {CargoCategoryCodeType} new: @listAgencyID{CargoCategoryCodeListAgencyIDContentType}{0..1} in type {CargoCategoryCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/TypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/TypeCode/@listAgencyID Modifying attribute: old: @listAgencyID{CargoOperationalCategoryCodeListAgencyIDContentType}{0..1} in type {CargoOperationalCategoryCodeType} new: @listAgencyID{CargoOperationalCategoryCodeListAgencyIDContentType}{0..1} in type {CargoOperationalCategoryCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/OperationalCategoryCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/OperationalCategoryCode/@listAgencyID Modifying attribute: old: @listAgencyID{ChargePayingPartyRoleCodeListAgencyIDContentType}{0..1} in type {ChargePayingPartyRoleCodeType} new: @listAgencyID{ChargePayingPartyRoleCodeListAgencyIDContentType}{0..1} in type {ChargePayingPartyRoleCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PayingPartyRoleCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PayingPartyRoleCode/@listAgencyID Modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType} new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID @@ -3554,7 +3564,8 @@ Modifying attribute: Modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType} new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TypeCode/@listAgencyID @@ -3683,7 +3694,8 @@ Modifying attribute: Modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} - Changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) + Changed enumeration from [] to [5] + added: [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CurrencyCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/SourceCurrencyCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/TargetCurrencyCode/@listAgencyID @@ -3728,14 +3740,16 @@ Modifying attribute: Modifying attribute: old: @listAgencyID{DeliveryTermsCodeListAgencyIDContentType}{0..1} in type {DeliveryTermsCodeType} new: @listAgencyID{DeliveryTermsCodeListAgencyIDContentType}{0..1} in type {DeliveryTermsCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode/@listAgencyID Modifying attribute: old: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType} new: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LinearSpatialDimension/TypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LinearSpatialDimension/TypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MaximumLinearSpatialDimension/TypeCode/@listAgencyID @@ -3754,7 +3768,8 @@ Modifying attribute: Modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listAgencyID @@ -3831,7 +3846,8 @@ Modifying attribute: Modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType} new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/StatusCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/StatusCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/StatusCode/@listAgencyID @@ -3907,20 +3923,23 @@ Modifying attribute: Modifying attribute: old: @listAgencyID{FreightChargeTariffClassCodeListAgencyIDContentType}{0..1} in type {FreightChargeTariffClassCodeType} new: @listAgencyID{FreightChargeTariffClassCodeListAgencyIDContentType}{0..1} in type {FreightChargeTariffClassCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/TariffClassCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/TariffClassCode/@listAgencyID Modifying attribute: old: @listAgencyID{LineStatusCodeListAgencyIDContentType}{0..1} in type {LineStatusCodeType} new: @listAgencyID{LineStatusCodeListAgencyIDContentType}{0..1} in type {LineStatusCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/AssociatedDocumentLineDocument/LineStatusCode/@listAgencyID Modifying attribute: old: @listAgencyID{MessageFunctionCodeListAgencyIDContentType}{0..1} in type {MessageFunctionCodeType} new: @listAgencyID{MessageFunctionCodeListAgencyIDContentType}{0..1} in type {MessageFunctionCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/ExchangedDocument/PurposeCode/@listAgencyID Modifying attribute: @@ -3934,14 +3953,16 @@ Modifying attribute: Modifying attribute: old: @listAgencyID{PackagingMarkingCodeListAgencyIDContentType}{0..1} in type {PackagingMarkingCodeType} new: @listAgencyID{PackagingMarkingCodeListAgencyIDContentType}{0..1} in type {PackagingMarkingCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/TypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/TypeCode/@listAgencyID Modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/RoleCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/RoleCode/@listAgencyID @@ -4070,39 +4091,45 @@ Modifying attribute: Modifying attribute: old: @listAgencyID{PaymentGuaranteeMeansCodeListAgencyIDContentType}{0..1} in type {PaymentGuaranteeMeansCodeType} new: @listAgencyID{PaymentGuaranteeMeansCodeListAgencyIDContentType}{0..1} in type {PaymentGuaranteeMeansCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/GuaranteeMethodCode/@listAgencyID Modifying attribute: old: @listAgencyID{PaymentMeansChannelCodeListAgencyIDContentType}{0..1} in type {PaymentMeansChannelCodeType} new: @listAgencyID{PaymentMeansChannelCodeListAgencyIDContentType}{0..1} in type {PaymentMeansChannelCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PaymentChannelCode/@listAgencyID Modifying attribute: old: @listAgencyID{PaymentMeansCodeListAgencyIDContentType}{0..1} in type {PaymentMeansCodeType} new: @listAgencyID{PaymentMeansCodeListAgencyIDContentType}{0..1} in type {PaymentMeansCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode/@listAgencyID Modifying attribute: old: @listAgencyID{PaymentTermsEventTimeReferenceCodeListAgencyIDContentType}{0..1} in type {PaymentTermsEventTimeReferenceCodeType} new: @listAgencyID{PaymentTermsEventTimeReferenceCodeListAgencyIDContentType}{0..1} in type {PaymentTermsEventTimeReferenceCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/FromEventCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/FromEventCode/@listAgencyID Modifying attribute: old: @listAgencyID{PaymentTermsTypeCodeListAgencyIDContentType}{0..1} in type {PaymentTermsTypeCodeType} new: @listAgencyID{PaymentTermsTypeCodeListAgencyIDContentType}{0..1} in type {PaymentTermsTypeCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/TypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/TypeCode/@listAgencyID Modifying attribute: old: @listAgencyID{PriceTypeCodeListAgencyIDContentType}{0..1} in type {PriceTypeCodeType} new: @listAgencyID{PriceTypeCodeListAgencyIDContentType}{0..1} in type {PriceTypeCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/TypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/TypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/TypeCode/@listAgencyID @@ -4111,7 +4138,8 @@ Modifying attribute: Modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@listAgencyID @@ -4187,7 +4215,8 @@ Modifying attribute: Modifying attribute: old: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} new: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CategoryCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode/@listAgencyID @@ -4210,7 +4239,8 @@ Modifying attribute: Modifying attribute: old: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} new: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/TypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode/@listAgencyID @@ -4233,7 +4263,8 @@ Modifying attribute: Modifying attribute: old: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} new: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/DueDateTypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode/@listAgencyID @@ -4256,14 +4287,16 @@ Modifying attribute: Modifying attribute: old: @listAgencyID{TransportEquipmentCategoryCodeListAgencyIDContentType}{0..1} in type {TransportEquipmentCategoryCodeType} new: @listAgencyID{TransportEquipmentCategoryCodeListAgencyIDContentType}{0..1} in type {TransportEquipmentCategoryCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/CategoryCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/CategoryCode/@listAgencyID Modifying attribute: old: @listAgencyID{TransportEquipmentFullnessCodeListAgencyIDContentType}{0..1} in type {TransportEquipmentFullnessCodeType} new: @listAgencyID{TransportEquipmentFullnessCodeListAgencyIDContentType}{0..1} in type {TransportEquipmentFullnessCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/UsedCapacityCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/UsedCapacityCode/@listAgencyID @@ -4279,21 +4312,24 @@ Modifying attribute: Modifying attribute: old: @listAgencyID{TransportMeansTypeCodeListAgencyIDContentType}{0..1} in type {TransportMeansTypeCodeType} new: @listAgencyID{TransportMeansTypeCodeListAgencyIDContentType}{0..1} in type {TransportMeansTypeCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/TypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/TypeCode/@listAgencyID Modifying attribute: old: @listAgencyID{TransportModeCodeListAgencyIDContentType}{0..1} in type {TransportModeCodeType} new: @listAgencyID{TransportModeCodeListAgencyIDContentType}{0..1} in type {TransportModeCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ModeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ModeCode/@listAgencyID Modifying attribute: old: @listAgencyID{TransportMovementStageCodeListAgencyIDContentType}{0..1} in type {TransportMovementStageCodeType} new: @listAgencyID{TransportMovementStageCodeListAgencyIDContentType}{0..1} in type {TransportMovementStageCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/StageCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/StageCode/@listAgencyID @@ -4304,6 +4340,7 @@ Modifying attribute: Changed type from token to LocationFunctionCodeListAgencyIDContentType Changed fixed default from null to 6 Changed enumeration from [] to [6] + added: [6] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyID @@ -4332,6 +4369,7 @@ Modifying attribute: Changed type from token to TransportServicePaymentArrangementCodeListAgencyIDContentType Changed fixed default from null to 6 Changed enumeration from [] to [6] + added: [6] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentArrangementCode/@listAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentArrangementCode/@listAgencyID @@ -4346,6 +4384,7 @@ Modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} Changed enumeration from [] to [5] + added: [5] at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID @@ -4663,6 +4702,7 @@ Modifying attribute: old: @schemeAgencyID{FreightChargeTypeIDSchemeAgencyIDContentType}{0..1} in type {FreightChargeTypeIDType} new: @schemeAgencyID{FreightChargeTypeIDSchemeAgencyIDContentType}{0..1} in type {FreightChargeTypeIDType} Changed enumeration from [] to [6] + added: [6] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/ID/@schemeAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/ID/@schemeAgencyID @@ -4670,6 +4710,7 @@ Modifying attribute: old: @schemeAgencyID{PaymentTermsIDSchemeAgencyIDContentType}{0..1} in type {PaymentTermsIDType} new: @schemeAgencyID{PaymentTermsIDSchemeAgencyIDContentType}{0..1} in type {PaymentTermsIDType} Changed enumeration from [] to [6] + added: [6] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/ID/@schemeAgencyID at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/ID/@schemeAgencyID @@ -4679,6 +4720,7 @@ Modifying attribute: Changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:MeasurementUnitCommonCodeLinear:4 Changed type from LinearUnitMeasureUnitCodeContentType to MeasurementUnitCommonCodeLinearContentType Changed enumeration from [] to [CMT, FOT, INH, MTR] + added: [CMT, FOT, INH, MTR] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LinearSpatialDimension/DiameterMeasure/@unitCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LoadingLengthMeasure/@unitCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LinearSpatialDimension/DiameterMeasure/@unitCode @@ -4702,6 +4744,7 @@ Modifying attribute: Changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:MeasurementUnitCommonCodeVolume:4 Changed type from VolumeUnitMeasureUnitCodeContentType to MeasurementUnitCommonCodeVolumeContentType Changed enumeration from [] to [CMQ, FTQ, LTR, MMQ, MTQ] + added: [CMQ, FTQ, LTR, MMQ, MTQ] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GrossVolumeMeasure/@unitCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GrossVolumeMeasure/@unitCode @@ -4711,6 +4754,7 @@ Modifying attribute: Changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:MeasurementUnitCommonCodeWeight:4 Changed type from WeightUnitMeasureUnitCodeContentType to MeasurementUnitCommonCodeWeightContentType Changed enumeration from [] to [KGM, TNE] + added: [KGM, TNE] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GrossWeightMeasure/@unitCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/GrossWeightMeasure/@unitCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/GrossWeightMeasure/@unitCode @@ -4727,17 +4771,1434 @@ Modifying attribute: Changed maxLength from null to 3 Changed minLength from null to 1 Changed enumeration from [] to [KGM, TNE] + added: [KGM, TNE] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NetWeightMeasure/@unitCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/NetWeightMeasure/@unitCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NetWeightMeasure/@unitCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/NetWeightMeasure/@unitCode +Modifying element: + old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType} + new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6] + added: [1, 2, 3, 4, 5, 6] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayableSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SalesSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PayableSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SalesSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode + Modifying element: old: {DocumentLineDocumentType}{1..1} in type {SupplyChainTradeLineItemType} new: {DocumentLineDocumentType}{0..1} in type {SupplyChainTradeLineItemType} Changed cardinality from 1..1 to 0..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/AssociatedDocumentLineDocument +Modifying element: + old: {AutomaticDataCaptureMethodCodeType}{0..*} in type {PackagingMarkingType} + new: {AutomaticDataCaptureMethodCodeType}{0..*} in type {PackagingMarkingType} + Changed enumeration from [] to [50, 51, 52, 64, 65, 67, 78, 79, 81, 82] + added: [50, 51, 52, 64, 65, 67, 78, 79, 81, 82] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/AutomaticDataCaptureMethodTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/AutomaticDataCaptureMethodTypeCode + +Modifying element: + old: {LogisticsChargeCalculationBasisCodeType}{0..1} in type {LogisticsServiceChargeType} + new: {LogisticsChargeCalculationBasisCodeType}{0..1} in type {LogisticsServiceChargeType} + Changed enumeration from [] to [ZZZ] + added: [ZZZ] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/CalculationBasisCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/CalculationBasisCode + +Modifying element: + old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} + new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} + Changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] + added: [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CategoryCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/CategoryCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/CategoryCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/CategoryCode + +Modifying element: + old: {TransportEquipmentCategoryCodeType}{0..1} in type {LogisticsTransportEquipmentType} + new: {TransportEquipmentCategoryCodeType}{0..1} in type {LogisticsTransportEquipmentType} + Changed enumeration from [] to [AA, AB, AD, AE, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AT, BB, BL, BPN, BPO, BPP, BPQ, BPR, BPS, BPT, BPU, BPV, BPW, BPX, BPY, BPZ, BR, BX, CH, CN, DPA, DPB, DPC, DPD, DPE, DPF, DPG, DPH, DPI, DPJ, DPK, DPL, DPM, DPN, DPO, EFP, EFQ, EFR, EFS, EFT, EFU, EFV, EFW, EFX, EFY, EFZ, EGA, EGB, EGC, EGD, EGE, EGF, EGG, EGH, EGI, EYP, FPN, FPR, IL, LAR, LU, MPA, PA, PBP, PFP, PL, PPA, PST, RF, RG, RGF, RO, RR, SPP, STR, SW, TE, TP, TS, TSU, UL] + added: [AA, AB, AD, AE, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AT, BB, BL, BPN, BPO, BPP, BPQ, BPR, BPS, BPT, BPU, BPV, BPW, BPX, BPY, BPZ, BR, BX, CH, CN, DPA, DPB, DPC, DPD, DPE, DPF, DPG, DPH, DPI, DPJ, DPK, DPL, DPM, DPN, DPO, EFP, EFQ, EFR, EFS, EFT, EFU, EFV, EFW, EFX, EFY, EFZ, EGA, EGB, EGC, EGD, EGE, EGF, EGG, EGH, EGI, EYP, FPN, FPR, IL, LAR, LU, MPA, PA, PBP, PFP, PL, PPA, PST, RF, RG, RGF, RO, RR, SPP, STR, SW, TE, TP, TS, TSU, UL] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/CategoryCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/CategoryCode + +Modifying element: + old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType} + new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType} + Changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] + added: [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] + at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/EndPointURIUniversalCommunication/ChannelCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/URIUniversalCommunication/ChannelCode + Modifying element: old: {TransportEquipmentSizeTypeCodeType}{0..1} in type {LogisticsTransportEquipmentType} new: {CodeType}{0..1} in type {LogisticsTransportEquipmentType} @@ -4745,6 +6206,334 @@ Modifying element: at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/CharacteristicCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/CharacteristicCode +Modifying element: + old: {CountryIDType}{0..1} in type {TradeAddressType} + new: {CountryIDType}{0..1} in type {TradeAddressType} + Changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + added: [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PreviousDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RequestedDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/PostalTradeAddress/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID + +Modifying element: + old: {CountryIDType}{0..1} in type {TradeLocationType} + new: {CountryIDType}{0..1} in type {TradeLocationType} + Changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + added: [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/RelevantTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/PlaceApplicableTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/PlaceApplicableTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/PlaceApplicableTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/DeliveryTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/DeliveryTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/PlaceApplicableTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ApplicableTradeDeliveryTerms/RelevantTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/DeliveryTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/DeliveryTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/PlaceApplicableTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/PlaceApplicableTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/PlaceApplicableTradeLocation/CountryID + +Modifying element: + old: {CurrencyCodeType}{0..1} in type {TradeTaxType} + new: {CurrencyCodeType}{0..1} in type {TradeTaxType} + Changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/CurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/CurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/CurrencyCode + Modifying element: old: {DateTimeType}{0..1} in type {DateTimeType} new: {DateOnlyFormattedDateTimeType}{1..1} in type {DateOnlyFormattedDateTimeType} @@ -4755,6 +6544,21 @@ Modifying element: at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/ApplicableTradeSettlementFinancialCard/ValidFromDateTime/DateTimeString at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeSettlementFinancialCard/ValidFromDateTime/DateTimeString +Modifying element: + old: {CurrencyCodeType}{1..1} in type {ValuationBreakdownStatementType} + new: {CurrencyCodeType}{1..1} in type {ValuationBreakdownStatementType} + Changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + at /CrossIndustryInvoice/ValuationBreakdownStatement/DefaultCurrencyCode + +Modifying element: + old: {DeliveryTermsCodeType}{0..1} in type {TradeDeliveryTermsType} + new: {DeliveryTermsCodeType}{0..1} in type {TradeDeliveryTermsType} + Changed enumeration from [] to [1, 2, CFR, CIF, CIP, CPT, DAP, DDP, DPU, EXW, FAS, FCA, FOB] + added: [1, 2, CFR, CIF, CIP, CPT, DAP, DDP, DPU, EXW, FAS, FCA, FOB] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode + Modifying element: old: {TextType}{0..1} in type {TradeProductType} new: {TextType}{0..*} in type {TradeProductType} @@ -4762,18 +6566,99 @@ Modifying element: at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/Description at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/Description +Modifying element: + old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/DueDateTypeCode + +Modifying element: + old: {PaymentTermsEventTimeReferenceCodeType}{0..1} in type {TradePaymentTermsType} + new: {PaymentTermsEventTimeReferenceCodeType}{0..1} in type {TradePaymentTermsType} + Changed enumeration from [] to [5, 24, 29, 45, 71] + added: [5, 24, 29, 45, 71] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/FromEventCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/FromEventCode + Modifying element: old: {TradePriceType}{0..1} in type {SubordinateLineTradeAgreementType} new: {TradePriceType}{0..*} in type {SubordinateLineTradeAgreementType} Changed cardinality from 0..1 to 0..* at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice +Modifying element: + old: {PaymentGuaranteeMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} + new: {PaymentGuaranteeMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} + Changed enumeration from [] to [1, 10, 11, 12, 13, 14, 20, 21, 23, 24, 45, ZZZ] + added: [1, 10, 11, 12, 13, 14, 20, 21, 23, 24, 45, ZZZ] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/GuaranteeMethodCode + +Modifying element: + old: {CountryIDType}{0..1} in type {TradeCountryType} + new: {CountryIDType}{0..1} in type {TradeCountryType} + Changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + added: [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/ServiceSupplyTradeCountry/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/ServiceSupplyTradeCountry/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/ServiceSupplyTradeCountry/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/ServiceSupplyTradeCountry/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/OriginTradeCountry/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/ServiceSupplyTradeCountry/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/ServiceSupplyTradeCountry/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/ServiceSupplyTradeCountry/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/ServiceSupplyTradeCountry/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/ServiceSupplyTradeCountry/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/ServiceSupplyTradeCountry/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/ServiceSupplyTradeCountry/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/ServiceSupplyTradeCountry/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID + +Modifying element: + old: {FreightChargeTypeIDType}{0..1} in type {LogisticsServiceChargeType} + new: {FreightChargeTypeIDType}{0..1} in type {LogisticsServiceChargeType} + Changed enumeration from [] to [100000, 100999, 101000, 101002, 101003, 101004, 101005, 101006, 101007, 101008, 101009, 101010, 101011, 101012, 101013, 101014, 101015, 101016, 101017, 101018, 101019, 101020, 101021, 101021, 101021, 101021, 101021, 101021, 101021, 101021, 101022, 101024, 101027, 101028, 101029, 101031, 101033, 101034, 101035, 101036, 101037, 101038, 101039, 101040, 101041, 101042, 101043, 101044, 101045, 101046, 101047, 101048, 101049, 101050, 101051, 101052, 101053, 101054, 101056, 101057, 101058, 101059, 101060, 101061, 102000, 102002, 102003, 102004, 102005, 102006, 102011, 102012, 102013, 102014, 102015, 102016, 102017, 102018, 102019, 102020, 102021, 102022, 102023, 102024, 102025, 102026, 102027, 102028, 102029, 102030, 102041, 102042, 102043, 102043, 102044, 102045, 102046, 102047, 102049, 102050, 102051, 102052, 102070, 102071, 102072, 102073, 102074, 102075, 102076, 102077, 102078, 102079, 102080, 102081, 102082, 102083, 102084, 102085, 102086, 102087, 102088, 103000, 103001, 103002, 103003, 103004, 103005, 103006, 103007, 103008, 103009, 103010, 103011, 103012, 103013, 103015, 103016, 103017, 103018, 103019, 104000, 104002, 104003, 104004, 104004, 104005, 104006, 104007, 104008, 104009, 104010, 104011, 104012, 104013, 104014, 104015, 104016, 104024, 104024, 104024, 104025, 104027, 104028, 104029, 104030, 104031, 104032, 104036, 104037, 104038, 104039, 104041, 104042, 104043, 104044, 104045, 104046, 104052, 104052, 104052, 104052, 104055, 104056, 104059, 104060, 104063, 104064, 104068, 104069, 104070, 104071, 104072, 104073, 104074, 104075, 104076, 104077, 104078, 104079, 104080, 104081, 104082, 104083, 104084, 104085, 104102, 104102, 104104, 104106, 104107, 104108, 104109, 104110, 104111, 104112, 104113, 104114, 104115, 104116, 104118, 104119, 104120, 104121, 104124, 104125, 104125, 104125, 104125, 104127, 104129, 104130, 104131, 104132, 104134, 104135, 104135, 104135, 104135, 104136, 104137, 104137, 104137, 104138, 104138, 104139, 104139, 104139, 104139, 104140, 104141, 104142, 104144, 104144, 104144, 104145, 104146, 104148, 104149, 104150, 104151, 104152, 104153, 104154, 104155, 104156, 104157, 104158, 104159, 104159, 104160, 104161, 104162, 104163, 104164, 104165, 104166, 104167, 104168, 104169, 104170, 104172, 104173, 104175, 104176, 104177, 104178, 104179, 104180, 104181, 104182, 104183, 104185, 104186, 104188, 104189, 104190, 104191, 104192, 104193, 104194, 104195, 104196, 104197, 104198, 104199, 104200, 104201, 104202, 104203, 104204, 104205, 104206, 104207, 104208, 104209, 104210, 104211, 104212, 104213, 105000, 105001, 105002, 105003, 105004, 105005, 105006, 105007, 105009, 105010, 105012, 105013, 105014, 105015, 105016, 105017, 105018, 105020, 106000, 106001, 106002, 106003, 106004, 106005, 106006, 106007, 106008, 106009, 106010, 106011, 106012, 106013, 106014, 106015, 106016, 106018, 107000, 107001, 107001, 107002, 108000, 108001, 108002, 108003, 108004, 108005, 108006, 109000, 109001, 110000, 110001, 110002, 110003, 110004, 110005, 110006, 110007, 110008, 110009, 110010, 110011, 200000, 200999, 202000, 202001, 202002, 202003, 202004, 202005, 202006, 202007, 202008, 202009, 202010, 202011, 202012, 202013, 203000, 203001, 203002, 203003, 203004, 203005, 203006, 203007, 203008, 203009, 203010, 203011, 203012, 203013, 203014, 203015, 203016, 203017, 203018, 203019, 203020, 203021, 203022, 203023, 203024, 203025, 203026, 203027, 203028, 203029, 203030, 203031, 203032, 203033, 203034, 203035, 203036, 203037, 203038, 203039, 203040, 203041, 203042, 203043, 203044, 203045, 203046, 203047, 203048, 203049, 203050, 203051, 203052, 203053, 203054, 203055, 203056, 203057, 203058, 203059, 203060, 203061, 203062, 203063, 203064, 203065, 203066, 203067, 203068, 203069, 203070, 203071, 203072, 203073, 203074, 203075, 203076, 203077, 203078, 203079, 203080, 203081, 203082, 203083, 203084, 203085, 203086, 203087, 203088, 203089, 203090, 203091, 203092, 203093, 203094, 203095, 203096, 203097, 203098, 203099, 203100, 203102, 203104, 203105, 203106, 203107, 203108, 203109, 203110, 203111, 203112, 203113, 203114, 203115, 203116, 203117, 203118, 203119, 203120, 203121, 203122, 203123, 203124, 203125, 203126, 203127, 203130, 203130, 203131, 203133, 203134, 203134, 203134, 203135, 203136, 203137, 203138, 203139, 203140, 203141, 203142, 203143, 203144, 203145, 203146, 203147, 203148, 203149, 203150, 203151, 203152, 203153, 203154, 203155, 203156, 203157, 203158, 203159, 203160, 203161, 203162, 203163, 203164, 203165, 203166, 203167, 203168, 203169, 203170, 203171, 203172, 203173, 203174, 203175, 203176, 203177, 203178, 203179, 203180, 203181, 203182, 203183, 203184, 203185, 203186, 203187, 203188, 203189, 203190, 203191, 203192, 203193, 203194, 203195, 203196, 203197, 203198, 203199, 203200, 203201, 203202, 203203, 203204, 203205, 204000, 204001, 204002, 204003, 204004, 204005, 204006, 204007, 204008, 204009, 204010, 204011, 204012, 204013, 204014, 204015, 204016, 204017, 204018, 204019, 204020, 204021, 204022, 204023, 204024, 204025, 204026, 204027, 204028, 204029, 204030, 204031, 204032, 204033, 204034, 204035, 204036, 204037, 204038, 204039, 204040, 204041, 204042, 204043, 204044, 204045, 204046, 204047, 204048, 204049, 204050, 204051, 204052, 204053, 204054, 204055, 204056, 204057, 204058, 204059, 204060, 204061, 204062, 204063, 204064, 204065, 204066, 204067, 204068, 204069, 204070, 204071, 204072, 204073, 204074, 204075, 204076, 204077, 204078, 204079, 204080, 204081, 204082, 204083, 204084, 204085, 204086, 204087, 204088, 204089, 204090, 204091, 204092, 204093, 204094, 204095, 204096, 204097, 204098, 204099, 204100, 204101, 204102, 204103, 204104, 204105, 204106, 204107, 204108, 204109, 204110, 204111, 204112, 204113, 204114, 204115, 204116, 204117, 204118, 204119, 204120, 204121, 204122, 204123, 204124, 204125, 204126, 204127, 204128, 204129, 204130, 204131, 204132, 204133, 204134, 204135, 204136, 204137, 204138, 204139, 204140, 204141, 204142, 204143, 204144, 204145, 204146, 204148, 204150, 204151, 204152, 204153, 204154, 204155, 204156, 204157, 204158, 204159, 204160, 204161, 204162, 204163, 204164, 204165, 204166, 204167, 204168, 204169, 204170, 204171, 204172, 204173, 204175, 204176, 204177, 204178, 204179, 204180, 204181, 204182, 204183, 204184, 204185, 204186, 204187, 204188, 204189, 204190, 204191, 204192, 204193, 204194, 204195, 204196, 204197, 204198, 204199, 204200, 204201, 204202, 204203, 204204, 204205, 204206, 204207, 204208, 204209, 204210, 204211, 204212, 204213, 204214, 204215, 204216, 204217, 204218, 204219, 205000, 205001, 205002, 205003, 205004, 205005, 205006, 205007, 205008, 205009, 205010, 205011, 205012, 205013, 205014, 205015, 205016, 205017, 205018, 205019, 205020, 205021, 205022, 205023, 205025, 205027, 205028, 205029, 205030, 205031, 205032, 205033, 205034, 205035, 205036, 205037, 205038, 205039, 205040, 205041, 205042, 205043, 205044, 205045, 205046, 205047, 205048, 205049, 205050, 205051, 205052, 205053, 205054, 205055, 205056, 205057, 205058, 205059, 205060, 205061, 205062, 206000, 206001, 206002, 206003, 206004, 206005, 206006, 206007, 206008, 206009, 206010, 206011, 206012, 206013, 206014, 206015, 206016, 206017, 206018, 206019, 206020, 206021, 206023, 206025, 206026, 206027, 206028, 206029, 206030, 206031, 206032, 206033, 206034, 206035, 206036, 206037, 206038, 206039, 206040, 206041, 206042, 206043, 206044, 206045, 206046, 206047, 206048, 206049, 206050, 206051, 206052, 206053, 206054, 206055, 206056, 206057, 206058, 206059, 206060, 206061, 206062, 206063, 206064, 206065, 206066, 207000, 207001, 207002, 207003, 207004, 207005, 207006, 207007, 207008, 207009, 207010, 207011, 207012, 207013, 207014, 207015, 207016, 207017, 207018, 207019, 207020, 207022, 207023, 207024, 207025, 207026, 207027, 207028, 207029, 207030, 207032, 207033, 207034, 207035, 207036, 207037, 207038, 207039, 207040, 207041, 207042, 207043, 207044, 207045, 207046, 207047, 207048, 207049, 207050, 207051, 207052, 207053, 207054, 207055, 207056, 207057, 207058, 207059, 207060, 207061, 207062, 208000, 208001, 208002, 208003, 208004, 208005, 208006, 208007, 208008, 208009, 208010, 208011, 208012, 208013, 208014, 208015, 208016, 208017, 208018, 208019, 208020, 208021, 208022, 208023, 208024, 208025, 208026, 208027, 208028, 208030, 208030, 208030, 208030, 208031, 208032, 208034, 208035, 208036, 208037, 208038, 208039, 208040, 208041, 208042, 208043, 208044, 208045, 208046, 208047, 208048, 208049, 208050, 208051, 209000, 209001, 209002, 209003, 209004, 209005, 209006, 209007, 209008, 209009, 209010, 209011, 209012, 209013, 209014, 209015, 209032, 209033, 209034, 209058, 209060, 209061, 209062, 209063, 209064, 209065, 209066, 209067, 209068, 209069, 209070, 209071, 209072, 209073, 209074, 210000, 210001, 210002, 210003, 210004, 210005, 210006, 210007, 210008, 210009, 210010, 210011, 210012, 210013, 210014, 210015, 210016, 210017, 210018, 210019, 210020, 210021, 210022, 210023, 210024, 210025, 210026, 210027, 210028, 210029, 210030, 210031, 210032, 210033, 210034, 210035, 210036, 210037, 210038, 210039, 210040, 210041, 210041, 210041, 210041, 210041, 210042, 210043, 210044, 210045, 210046, 210047, 210048, 210049, 210050, 210051, 210052, 210053, 210054, 210055, 210056, 210057, 210058, 210059, 210060, 210061, 210062, 211000, 211001, 211002, 211003, 211004, 211005, 211006, 211007, 211008, 211009, 211010, 211011, 211012, 211013, 211014, 211015, 211016, 211017, 211018, 211019, 211020, 211021, 211022, 211023, 211024, 211025, 211026, 211027, 211028, 211029, 211030, 211031, 211032, 211033, 211034, 211035, 211036, 211037, 211038, 211039, 211040, 211041, 211042, 211043, 211044, 212000, 212001, 212002, 212003, 212004, 213000, 213001, 213002, 213003, 213004, 213005, 214000, 214001, 214002, 214003, 214004, 214004, 214004, 215000, 215001, 215002, 215002, 215004, 215005, 215005, 215005, 215005, 215006, 215007, 215008, 215009, 215010, 215011, 216000, 216001, 216002, 216003, 216004, 216005, 216006, 216007, 216008, 216009, 216010, 216011, 216012, 216013, 216014, 216015, 216016, 216016, 216016, 216016, 216017, 216019, 216020, 216021, 216022, 216023, 216024, 216025, 216026, 216027, 216028, 216029, 216030, 216031, 216031, 216031, 216032, 216033, 216034, 216035, 216036, 216037, 216038, 216039, 216040, 216041, 216042, 216044, 216045, 216046, 216047, 216048, 216049, 216050, 216051, 216052, 216053, 216054, 216055, 216056, 216057, 216058, 216059, 216060, 216061, 216062, 216063, 216064, 216065, 216066, 216067, 216068, 216069, 216070, 216071, 216072, 216073, 216074, 216075, 216076, 216077, 216078, 216079, 216080, 216081, 216082, 216083, 216084, 216085, 216086, 216087, 216088, 216089, 216090, 216091, 216092, 216093, 216094, 300000, 300999, 301000, 301001, 301001, 301001, 301002, 301002, 301002, 301002, 301003, 301004, 301005, 301006, 301007, 301008, 301009, 301010, 301011, 301011, 301011, 301011, 301012, 301013, 301013, 301014, 301015, 301016, 301017, 301018, 301019, 301020, 301021, 301022, 301023, 301024, 301025, 301026, 301027, 301028, 301029, 301030, 301031, 301031, 301032, 301033, 301034, 301035, 301036, 301037, 301038, 301039, 301040, 301041, 301042, 301043, 301044, 301045, 301046, 301047, 301048, 301048, 301048, 301048, 301048, 301048, 301048, 301049, 301050, 301051, 301052, 301053, 301054, 301055, 301056, 301057, 301058, 301059, 301060, 301061, 301062, 301063, 301064, 301065, 301066, 301067, 301068, 301069, 301070, 301072, 301073, 301074, 301075, 301076, 301077, 301078, 302000, 302001, 302002, 302003, 302004, 302004, 302004, 302004, 302004, 302005, 302006, 302007, 302008, 302009, 302010, 302011, 302012, 302013, 302014, 302016, 302017, 302018, 400000, 400999, 401000, 401001, 401003, 401004, 401005, 401006, 401009, 401015, 401015, 401016, 401017, 401018, 402000, 402001, 402002, 402003, 402004, 402005, 402006, 402007, 500000, 500999, 501000, 501001, 501002, 501003, 501004, 501005, 501005, 501005, 501005, 501006, 501006, 501006, 501006, 501007, 501007, 501008, 501009, 501009, 501009, 501009, 502000, 502001, 502002, 502002, 502002, 502003, 502004, 502005, 502006, 600000, 600018, 600926, 600999, 601000, 601001, 601002, 601003, 601003, 601003, 601003, 601004, 601005, 601006, 601007, 601008, 602000, 602001, 602002, 602003, 603000, 603001, 603002, 603003, 603004, 603005, 603006, 603007, 603008, 603009, 603010, 604000, 604001, 604001, 604001, 604002, 605000, 606000, 606003, 606003, 606004, 606005, 606006, 606007, 606008, 606009, 607000, 607001, 607001, 607001, 608000, 608001, 608001, 608001, 608001, 608002, 608003, 608003, 608003, 608003, 608003, 609000, 609001, 609002, 609003, 609004, 609005, 609006, 609007, 609008, 609008, 609008, 609008, 609008, 609009, 609010, 609011, 609012, 609013, 609015, 609016, 609017, 609018, 609019, 609020, 609022, 609023, 609024, 609025, 609026, 609027, 609028, 609029, 609030, 609031, 609031, 609032, 609032, 609033, 609034, 609035, 609036, 609037, 609038, 609039, 609040, 609041, 609041, 609042, 609043, 609043, 609044, 609045, 609046, 609047, 609049, 609050, 609051, 609052, 609053, 609054, 609055, 609056, 609056, 609056, 609057, 609058, 609059, 609060, 609061, 609062, 609063, 609064, 609065, 609067, 609068, 609069, 609070, 609071, 609072, 609073, 609074, 609075, 609077, 609078, 609079, 609080, 609081, 609082, 609083, 609084, 609085, 609087, 609088, 609089, 609090, 609091, 609092, 609093, 609094, 609095, 609096, 609097, 609098, 609099, 609100, 609101, 609102, 609103, 609104, 609105, 609106, 609107, 609111, 609112, 609113, 609115, 609116, 609117, 609118, 609119, 609120, 609122, 609123, 609124, 609125, 609126, 609128, 609129, 609130, 609131, 609132, 609133, 609134, 609135, 609136, 609137, 609138, 609139, 609140, 609141, 609142, 609143, 609144, 609145] + added: [100000, 100999, 101000, 101002, 101003, 101004, 101005, 101006, 101007, 101008, 101009, 101010, 101011, 101012, 101013, 101014, 101015, 101016, 101017, 101018, 101019, 101020, 101021, 101021, 101021, 101021, 101021, 101021, 101021, 101021, 101022, 101024, 101027, 101028, 101029, 101031, 101033, 101034, 101035, 101036, 101037, 101038, 101039, 101040, 101041, 101042, 101043, 101044, 101045, 101046, 101047, 101048, 101049, 101050, 101051, 101052, 101053, 101054, 101056, 101057, 101058, 101059, 101060, 101061, 102000, 102002, 102003, 102004, 102005, 102006, 102011, 102012, 102013, 102014, 102015, 102016, 102017, 102018, 102019, 102020, 102021, 102022, 102023, 102024, 102025, 102026, 102027, 102028, 102029, 102030, 102041, 102042, 102043, 102043, 102044, 102045, 102046, 102047, 102049, 102050, 102051, 102052, 102070, 102071, 102072, 102073, 102074, 102075, 102076, 102077, 102078, 102079, 102080, 102081, 102082, 102083, 102084, 102085, 102086, 102087, 102088, 103000, 103001, 103002, 103003, 103004, 103005, 103006, 103007, 103008, 103009, 103010, 103011, 103012, 103013, 103015, 103016, 103017, 103018, 103019, 104000, 104002, 104003, 104004, 104004, 104005, 104006, 104007, 104008, 104009, 104010, 104011, 104012, 104013, 104014, 104015, 104016, 104024, 104024, 104024, 104025, 104027, 104028, 104029, 104030, 104031, 104032, 104036, 104037, 104038, 104039, 104041, 104042, 104043, 104044, 104045, 104046, 104052, 104052, 104052, 104052, 104055, 104056, 104059, 104060, 104063, 104064, 104068, 104069, 104070, 104071, 104072, 104073, 104074, 104075, 104076, 104077, 104078, 104079, 104080, 104081, 104082, 104083, 104084, 104085, 104102, 104102, 104104, 104106, 104107, 104108, 104109, 104110, 104111, 104112, 104113, 104114, 104115, 104116, 104118, 104119, 104120, 104121, 104124, 104125, 104125, 104125, 104125, 104127, 104129, 104130, 104131, 104132, 104134, 104135, 104135, 104135, 104135, 104136, 104137, 104137, 104137, 104138, 104138, 104139, 104139, 104139, 104139, 104140, 104141, 104142, 104144, 104144, 104144, 104145, 104146, 104148, 104149, 104150, 104151, 104152, 104153, 104154, 104155, 104156, 104157, 104158, 104159, 104159, 104160, 104161, 104162, 104163, 104164, 104165, 104166, 104167, 104168, 104169, 104170, 104172, 104173, 104175, 104176, 104177, 104178, 104179, 104180, 104181, 104182, 104183, 104185, 104186, 104188, 104189, 104190, 104191, 104192, 104193, 104194, 104195, 104196, 104197, 104198, 104199, 104200, 104201, 104202, 104203, 104204, 104205, 104206, 104207, 104208, 104209, 104210, 104211, 104212, 104213, 105000, 105001, 105002, 105003, 105004, 105005, 105006, 105007, 105009, 105010, 105012, 105013, 105014, 105015, 105016, 105017, 105018, 105020, 106000, 106001, 106002, 106003, 106004, 106005, 106006, 106007, 106008, 106009, 106010, 106011, 106012, 106013, 106014, 106015, 106016, 106018, 107000, 107001, 107001, 107002, 108000, 108001, 108002, 108003, 108004, 108005, 108006, 109000, 109001, 110000, 110001, 110002, 110003, 110004, 110005, 110006, 110007, 110008, 110009, 110010, 110011, 200000, 200999, 202000, 202001, 202002, 202003, 202004, 202005, 202006, 202007, 202008, 202009, 202010, 202011, 202012, 202013, 203000, 203001, 203002, 203003, 203004, 203005, 203006, 203007, 203008, 203009, 203010, 203011, 203012, 203013, 203014, 203015, 203016, 203017, 203018, 203019, 203020, 203021, 203022, 203023, 203024, 203025, 203026, 203027, 203028, 203029, 203030, 203031, 203032, 203033, 203034, 203035, 203036, 203037, 203038, 203039, 203040, 203041, 203042, 203043, 203044, 203045, 203046, 203047, 203048, 203049, 203050, 203051, 203052, 203053, 203054, 203055, 203056, 203057, 203058, 203059, 203060, 203061, 203062, 203063, 203064, 203065, 203066, 203067, 203068, 203069, 203070, 203071, 203072, 203073, 203074, 203075, 203076, 203077, 203078, 203079, 203080, 203081, 203082, 203083, 203084, 203085, 203086, 203087, 203088, 203089, 203090, 203091, 203092, 203093, 203094, 203095, 203096, 203097, 203098, 203099, 203100, 203102, 203104, 203105, 203106, 203107, 203108, 203109, 203110, 203111, 203112, 203113, 203114, 203115, 203116, 203117, 203118, 203119, 203120, 203121, 203122, 203123, 203124, 203125, 203126, 203127, 203130, 203130, 203131, 203133, 203134, 203134, 203134, 203135, 203136, 203137, 203138, 203139, 203140, 203141, 203142, 203143, 203144, 203145, 203146, 203147, 203148, 203149, 203150, 203151, 203152, 203153, 203154, 203155, 203156, 203157, 203158, 203159, 203160, 203161, 203162, 203163, 203164, 203165, 203166, 203167, 203168, 203169, 203170, 203171, 203172, 203173, 203174, 203175, 203176, 203177, 203178, 203179, 203180, 203181, 203182, 203183, 203184, 203185, 203186, 203187, 203188, 203189, 203190, 203191, 203192, 203193, 203194, 203195, 203196, 203197, 203198, 203199, 203200, 203201, 203202, 203203, 203204, 203205, 204000, 204001, 204002, 204003, 204004, 204005, 204006, 204007, 204008, 204009, 204010, 204011, 204012, 204013, 204014, 204015, 204016, 204017, 204018, 204019, 204020, 204021, 204022, 204023, 204024, 204025, 204026, 204027, 204028, 204029, 204030, 204031, 204032, 204033, 204034, 204035, 204036, 204037, 204038, 204039, 204040, 204041, 204042, 204043, 204044, 204045, 204046, 204047, 204048, 204049, 204050, 204051, 204052, 204053, 204054, 204055, 204056, 204057, 204058, 204059, 204060, 204061, 204062, 204063, 204064, 204065, 204066, 204067, 204068, 204069, 204070, 204071, 204072, 204073, 204074, 204075, 204076, 204077, 204078, 204079, 204080, 204081, 204082, 204083, 204084, 204085, 204086, 204087, 204088, 204089, 204090, 204091, 204092, 204093, 204094, 204095, 204096, 204097, 204098, 204099, 204100, 204101, 204102, 204103, 204104, 204105, 204106, 204107, 204108, 204109, 204110, 204111, 204112, 204113, 204114, 204115, 204116, 204117, 204118, 204119, 204120, 204121, 204122, 204123, 204124, 204125, 204126, 204127, 204128, 204129, 204130, 204131, 204132, 204133, 204134, 204135, 204136, 204137, 204138, 204139, 204140, 204141, 204142, 204143, 204144, 204145, 204146, 204148, 204150, 204151, 204152, 204153, 204154, 204155, 204156, 204157, 204158, 204159, 204160, 204161, 204162, 204163, 204164, 204165, 204166, 204167, 204168, 204169, 204170, 204171, 204172, 204173, 204175, 204176, 204177, 204178, 204179, 204180, 204181, 204182, 204183, 204184, 204185, 204186, 204187, 204188, 204189, 204190, 204191, 204192, 204193, 204194, 204195, 204196, 204197, 204198, 204199, 204200, 204201, 204202, 204203, 204204, 204205, 204206, 204207, 204208, 204209, 204210, 204211, 204212, 204213, 204214, 204215, 204216, 204217, 204218, 204219, 205000, 205001, 205002, 205003, 205004, 205005, 205006, 205007, 205008, 205009, 205010, 205011, 205012, 205013, 205014, 205015, 205016, 205017, 205018, 205019, 205020, 205021, 205022, 205023, 205025, 205027, 205028, 205029, 205030, 205031, 205032, 205033, 205034, 205035, 205036, 205037, 205038, 205039, 205040, 205041, 205042, 205043, 205044, 205045, 205046, 205047, 205048, 205049, 205050, 205051, 205052, 205053, 205054, 205055, 205056, 205057, 205058, 205059, 205060, 205061, 205062, 206000, 206001, 206002, 206003, 206004, 206005, 206006, 206007, 206008, 206009, 206010, 206011, 206012, 206013, 206014, 206015, 206016, 206017, 206018, 206019, 206020, 206021, 206023, 206025, 206026, 206027, 206028, 206029, 206030, 206031, 206032, 206033, 206034, 206035, 206036, 206037, 206038, 206039, 206040, 206041, 206042, 206043, 206044, 206045, 206046, 206047, 206048, 206049, 206050, 206051, 206052, 206053, 206054, 206055, 206056, 206057, 206058, 206059, 206060, 206061, 206062, 206063, 206064, 206065, 206066, 207000, 207001, 207002, 207003, 207004, 207005, 207006, 207007, 207008, 207009, 207010, 207011, 207012, 207013, 207014, 207015, 207016, 207017, 207018, 207019, 207020, 207022, 207023, 207024, 207025, 207026, 207027, 207028, 207029, 207030, 207032, 207033, 207034, 207035, 207036, 207037, 207038, 207039, 207040, 207041, 207042, 207043, 207044, 207045, 207046, 207047, 207048, 207049, 207050, 207051, 207052, 207053, 207054, 207055, 207056, 207057, 207058, 207059, 207060, 207061, 207062, 208000, 208001, 208002, 208003, 208004, 208005, 208006, 208007, 208008, 208009, 208010, 208011, 208012, 208013, 208014, 208015, 208016, 208017, 208018, 208019, 208020, 208021, 208022, 208023, 208024, 208025, 208026, 208027, 208028, 208030, 208030, 208030, 208030, 208031, 208032, 208034, 208035, 208036, 208037, 208038, 208039, 208040, 208041, 208042, 208043, 208044, 208045, 208046, 208047, 208048, 208049, 208050, 208051, 209000, 209001, 209002, 209003, 209004, 209005, 209006, 209007, 209008, 209009, 209010, 209011, 209012, 209013, 209014, 209015, 209032, 209033, 209034, 209058, 209060, 209061, 209062, 209063, 209064, 209065, 209066, 209067, 209068, 209069, 209070, 209071, 209072, 209073, 209074, 210000, 210001, 210002, 210003, 210004, 210005, 210006, 210007, 210008, 210009, 210010, 210011, 210012, 210013, 210014, 210015, 210016, 210017, 210018, 210019, 210020, 210021, 210022, 210023, 210024, 210025, 210026, 210027, 210028, 210029, 210030, 210031, 210032, 210033, 210034, 210035, 210036, 210037, 210038, 210039, 210040, 210041, 210041, 210041, 210041, 210041, 210042, 210043, 210044, 210045, 210046, 210047, 210048, 210049, 210050, 210051, 210052, 210053, 210054, 210055, 210056, 210057, 210058, 210059, 210060, 210061, 210062, 211000, 211001, 211002, 211003, 211004, 211005, 211006, 211007, 211008, 211009, 211010, 211011, 211012, 211013, 211014, 211015, 211016, 211017, 211018, 211019, 211020, 211021, 211022, 211023, 211024, 211025, 211026, 211027, 211028, 211029, 211030, 211031, 211032, 211033, 211034, 211035, 211036, 211037, 211038, 211039, 211040, 211041, 211042, 211043, 211044, 212000, 212001, 212002, 212003, 212004, 213000, 213001, 213002, 213003, 213004, 213005, 214000, 214001, 214002, 214003, 214004, 214004, 214004, 215000, 215001, 215002, 215002, 215004, 215005, 215005, 215005, 215005, 215006, 215007, 215008, 215009, 215010, 215011, 216000, 216001, 216002, 216003, 216004, 216005, 216006, 216007, 216008, 216009, 216010, 216011, 216012, 216013, 216014, 216015, 216016, 216016, 216016, 216016, 216017, 216019, 216020, 216021, 216022, 216023, 216024, 216025, 216026, 216027, 216028, 216029, 216030, 216031, 216031, 216031, 216032, 216033, 216034, 216035, 216036, 216037, 216038, 216039, 216040, 216041, 216042, 216044, 216045, 216046, 216047, 216048, 216049, 216050, 216051, 216052, 216053, 216054, 216055, 216056, 216057, 216058, 216059, 216060, 216061, 216062, 216063, 216064, 216065, 216066, 216067, 216068, 216069, 216070, 216071, 216072, 216073, 216074, 216075, 216076, 216077, 216078, 216079, 216080, 216081, 216082, 216083, 216084, 216085, 216086, 216087, 216088, 216089, 216090, 216091, 216092, 216093, 216094, 300000, 300999, 301000, 301001, 301001, 301001, 301002, 301002, 301002, 301002, 301003, 301004, 301005, 301006, 301007, 301008, 301009, 301010, 301011, 301011, 301011, 301011, 301012, 301013, 301013, 301014, 301015, 301016, 301017, 301018, 301019, 301020, 301021, 301022, 301023, 301024, 301025, 301026, 301027, 301028, 301029, 301030, 301031, 301031, 301032, 301033, 301034, 301035, 301036, 301037, 301038, 301039, 301040, 301041, 301042, 301043, 301044, 301045, 301046, 301047, 301048, 301048, 301048, 301048, 301048, 301048, 301048, 301049, 301050, 301051, 301052, 301053, 301054, 301055, 301056, 301057, 301058, 301059, 301060, 301061, 301062, 301063, 301064, 301065, 301066, 301067, 301068, 301069, 301070, 301072, 301073, 301074, 301075, 301076, 301077, 301078, 302000, 302001, 302002, 302003, 302004, 302004, 302004, 302004, 302004, 302005, 302006, 302007, 302008, 302009, 302010, 302011, 302012, 302013, 302014, 302016, 302017, 302018, 400000, 400999, 401000, 401001, 401003, 401004, 401005, 401006, 401009, 401015, 401015, 401016, 401017, 401018, 402000, 402001, 402002, 402003, 402004, 402005, 402006, 402007, 500000, 500999, 501000, 501001, 501002, 501003, 501004, 501005, 501005, 501005, 501005, 501006, 501006, 501006, 501006, 501007, 501007, 501008, 501009, 501009, 501009, 501009, 502000, 502001, 502002, 502002, 502002, 502003, 502004, 502005, 502006, 600000, 600018, 600926, 600999, 601000, 601001, 601002, 601003, 601003, 601003, 601003, 601004, 601005, 601006, 601007, 601008, 602000, 602001, 602002, 602003, 603000, 603001, 603002, 603003, 603004, 603005, 603006, 603007, 603008, 603009, 603010, 604000, 604001, 604001, 604001, 604002, 605000, 606000, 606003, 606003, 606004, 606005, 606006, 606007, 606008, 606009, 607000, 607001, 607001, 607001, 608000, 608001, 608001, 608001, 608001, 608002, 608003, 608003, 608003, 608003, 608003, 609000, 609001, 609002, 609003, 609004, 609005, 609006, 609007, 609008, 609008, 609008, 609008, 609008, 609009, 609010, 609011, 609012, 609013, 609015, 609016, 609017, 609018, 609019, 609020, 609022, 609023, 609024, 609025, 609026, 609027, 609028, 609029, 609030, 609031, 609031, 609032, 609032, 609033, 609034, 609035, 609036, 609037, 609038, 609039, 609040, 609041, 609041, 609042, 609043, 609043, 609044, 609045, 609046, 609047, 609049, 609050, 609051, 609052, 609053, 609054, 609055, 609056, 609056, 609056, 609057, 609058, 609059, 609060, 609061, 609062, 609063, 609064, 609065, 609067, 609068, 609069, 609070, 609071, 609072, 609073, 609074, 609075, 609077, 609078, 609079, 609080, 609081, 609082, 609083, 609084, 609085, 609087, 609088, 609089, 609090, 609091, 609092, 609093, 609094, 609095, 609096, 609097, 609098, 609099, 609100, 609101, 609102, 609103, 609104, 609105, 609106, 609107, 609111, 609112, 609113, 609115, 609116, 609117, 609118, 609119, 609120, 609122, 609123, 609124, 609125, 609126, 609128, 609129, 609130, 609131, 609132, 609133, 609134, 609135, 609136, 609137, 609138, 609139, 609140, 609141, 609142, 609143, 609144, 609145] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/ID + Modifying element: old: {IDType}{1..1} in type {ExchangedDocumentType} new: {IDType}{0..1} in type {ExchangedDocumentType} Changed cardinality from 1..1 to 0..1 at /CrossIndustryInvoice/ExchangedDocument/ID +Modifying element: + old: {PaymentTermsIDType}{0..1} in type {TradePaymentTermsType} + new: {PaymentTermsIDType}{0..1} in type {TradePaymentTermsType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] + added: [1, 2, 3, 4, 5, 6, 7] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/ID + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/ID + Modifying element: old: {TextType}{0..1} in type {TransportCargoType} new: {TextType}{0..*} in type {TransportCargoType} @@ -4781,6 +6666,13 @@ Modifying element: at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/Identification at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/Identification +Modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode + Modifying element: old: {ReferencedDocumentType}{0..1} in type {HeaderTradeSettlementType} new: {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} @@ -4793,6 +6685,13 @@ Modifying element: Changed cardinality from 0..1 to 0..* at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument +Modifying element: + old: {LineStatusCodeType}{0..1} in type {DocumentLineDocumentType} + new: {LineStatusCodeType}{0..1} in type {DocumentLineDocumentType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/AssociatedDocumentLineDocument/LineStatusCode + Modifying element: old: {SpatialDimensionType}{0..1} in type {TradeProductType} new: {SpatialDimensionType}{0..*} in type {TradeProductType} @@ -4800,6 +6699,14 @@ Modifying element: at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LinearSpatialDimension at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LinearSpatialDimension +Modifying element: + old: {TransportModeCodeType}{0..1} in type {LogisticsTransportMovementType} + new: {TransportModeCodeType}{0..1} in type {LogisticsTransportMovementType} + Changed enumeration from [] to [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] + added: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ModeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ModeCode + Modifying element: old: {TradePriceType}{0..1} in type {SubordinateLineTradeAgreementType} new: {TradePriceType}{0..*} in type {SubordinateLineTradeAgreementType} @@ -4820,19 +6727,514 @@ Modifying element: at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NetWeightMeasure at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NetWeightMeasure +Modifying element: + old: {CargoOperationalCategoryCodeType}{0..1} in type {TransportCargoType} + new: {CargoOperationalCategoryCodeType}{0..1} in type {TransportCargoType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/OperationalCategoryCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/OperationalCategoryCode + Modifying element: old: {CreditorFinancialAccountType}{0..1} in type {TradeSettlementPaymentMeansType} new: {CreditorFinancialAccountType}{0..*} in type {TradeSettlementPaymentMeansType} Changed cardinality from 0..1 to 0..* at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PayeePartyCreditorFinancialAccount +Modifying element: + old: {ChargePayingPartyRoleCodeType}{0..1} in type {LogisticsServiceChargeType} + new: {ChargePayingPartyRoleCodeType}{0..1} in type {LogisticsServiceChargeType} + Changed enumeration from [] to [AB, AE, AF, AH, AQ, AR, AT, AU, CA, CG, CN, CPD, CX, CZ, DGB, EX, FW, GS, IM, IV, PE] + added: [AB, AE, AF, AH, AQ, AR, AT, AU, CA, CG, CN, CPD, CX, CZ, DGB, EX, FW, GS, IM, IV, PE] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PayingPartyRoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PayingPartyRoleCode + Modifying element: old: {CodeType}{0..1} in type {LogisticsServiceChargeType} new: {TransportServicePaymentArrangementCodeType}{0..1} in type {LogisticsServiceChargeType} Changed type from CodeType to TransportServicePaymentArrangementCodeType + Changed enumeration from [] to [A, B, C, P] + added: [A, B, C, P] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentArrangementCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentArrangementCode +Modifying element: + old: {PaymentMeansChannelCodeType}{0..1} in type {TradeSettlementPaymentMeansType} + new: {PaymentMeansChannelCodeType}{0..1} in type {TradeSettlementPaymentMeansType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, ZZZ] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PaymentChannelCode + +Modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentCurrencyCode + +Modifying element: + old: {MessageFunctionCodeType}{0..1} in type {ExchangedDocumentType} + new: {MessageFunctionCodeType}{0..1} in type {ExchangedDocumentType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73] + at /CrossIndustryInvoice/ExchangedDocument/PurposeCode + +Modifying element: + old: {AdjustmentReasonCodeType}{0..1} in type {DeliveryAdjustmentType} + new: {AdjustmentReasonCodeType}{0..1} in type {DeliveryAdjustmentType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/SpecifiedDeliveryAdjustment/ReasonCode + +Modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode + +Modifying element: + old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/ReferenceTypeCode + +Modifying element: + old: {PartyRoleCodeType}{0..*} in type {TradePartyType} + new: {PartyRoleCodeType}{0..*} in type {TradePartyType} + Changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] + added: [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] + at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/RoleCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/RoleCode + +Modifying element: + old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType} + new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType} + Changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] + added: [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayableSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SalesSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PayableSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SalesSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode + +Modifying element: + old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + Changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/SourceCurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/SourceCurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/SourceCurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode + +Modifying element: + old: {TransportMovementStageCodeType}{0..1} in type {LogisticsTransportMovementType} + new: {TransportMovementStageCodeType}{0..1} in type {LogisticsTransportMovementType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34] + added: [1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/StageCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/StageCode + +Modifying element: + old: {CargoCommodityCategoryCodeType}{0..1} in type {TransportCargoType} + new: {CargoCommodityCategoryCodeType}{0..1} in type {TransportCargoType} + Changed enumeration from [] to [ZZZ] + added: [ZZZ] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/StatisticalClassificationCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/StatisticalClassificationCode + +Modifying element: + old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} + new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/StatusCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/StatusCode + Modifying element: old: {CodeType}{0..1} in type {NoteType} new: {CodeType}{0..*} in type {NoteType} @@ -4966,10 +7368,184 @@ Modifying element: at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode +Modifying element: + old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + Changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/TargetCurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/TargetCurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/TargetCurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode + +Modifying element: + old: {FreightChargeTariffClassCodeType}{0..1} in type {LogisticsServiceChargeType} + new: {FreightChargeTariffClassCodeType}{0..1} in type {LogisticsServiceChargeType} + Changed enumeration from [] to [A, B, C, D, E, F, G, H, K, M, N, Q, R, S] + added: [A, B, C, D, E, F, G, H, K, M, N, Q, R, S] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/TariffClassCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/TariffClassCode + +Modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode + +Modifying element: + old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType} + new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] + added: [1, 2, 3, 4, 5, 6, 7] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayableSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SalesSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PayableSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SalesSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/TypeCode + +Modifying element: + old: {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/TypeCode + +Modifying element: + old: {CargoCategoryCodeType}{0..1} in type {TransportCargoType} + new: {CargoCategoryCodeType}{0..1} in type {TransportCargoType} + Changed enumeration from [] to [0, 1, 2, 3, 4, 5, 6, 7, 9] + added: [0, 1, 2, 3, 4, 5, 6, 7, 9] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/TypeCode + Modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType} new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} Changed type from CodeType to LocationFunctionCodeType + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode @@ -4991,6 +7567,337 @@ Modifying element: at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode +Modifying element: + old: {ContactTypeCodeType}{0..1} in type {TradeContactType} + new: {ContactTypeCodeType}{0..1} in type {TradeContactType} + Changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] + added: [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] + at /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TypeCode + +Modifying element: + old: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType} + new: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LinearSpatialDimension/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LinearSpatialDimension/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MaximumLinearSpatialDimension/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MinimumLinearSpatialDimension/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/LinearSpatialDimension/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/MaximumLinearSpatialDimension/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/LinearSpatialDimension/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/MaximumLinearSpatialDimension/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LinearSpatialDimension/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LinearSpatialDimension/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MaximumLinearSpatialDimension/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MinimumLinearSpatialDimension/TypeCode + +Modifying element: + old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} + new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + at /CrossIndustryInvoice/ExchangedDocument/TypeCode + +Modifying element: + old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType} + new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/TypeCode + +Modifying element: + old: {GoodsTypeCodeType}{0..1} in type {SupplyChainConsignmentItemType} + new: {GoodsTypeCodeType}{0..1} in type {SupplyChainConsignmentItemType} + Changed enumeration from [] to [ZZZ] + added: [ZZZ] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/TypeCode + +Modifying element: + old: {PackageTypeCodeType}{0..1} in type {SupplyChainPackagingType} + new: {PackageTypeCodeType}{0..1} in type {SupplyChainPackagingType} + Changed enumeration from [] to [43, 44, 1A, 1B, 1D, 1F, 1G, 1W, 2C, 3A, 3H, 4A, 4B, 4C, 4D, 4F, 4G, 4H, 5H, 5L, 5M, 6H, 6P, 7A, 7B, 8A, 8B, 8C, AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AL, AM, AP, AT, AV, B4, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, BV, BW, BX, BY, BZ, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CO, CP, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DG, DH, DI, DJ, DK, DL, DM, DN, DP, DR, DS, DT, DU, DV, DW, DX, DY, EC, ED, EE, EF, EG, EH, EI, EN, FB, FC, FD, FE, FI, FL, FO, FP, FR, FT, FW, FX, GB, GI, GL, GR, GU, GY, GZ, HA, HB, HC, HG, HN, HR, IA, IB, IC, ID, IE, IF, IG, IH, IK, IL, IN, IZ, JB, JC, JG, JR, JT, JY, KG, KI, LE, LG, LT, LU, LV, LZ, MA, MB, MC, ME, MR, MS, MT, MW, MX, NA, NE, NF, NG, NS, NT, NU, NV, O1, O2, O3, O4, O5, O6, O7, O8, O9, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PL, PN, PO, PP, PR, PT, PU, PV, PX, PY, PZ, QA, QB, QC, QD, QF, QG, QH, QJ, QK, QL, QM, QN, QP, QQ, QR, QS, RD, RG, RJ, RK, RL, RO, RT, RZ, SA, SB, SC, SD, SE, SH, SI, SK, SL, SM, SO, SP, SS, ST, SU, SV, SW, SY, SZ, T1, TB, TC, TD, TE, TG, TI, TK, TL, TN, TO, TR, TS, TT, TU, TV, TW, TY, TZ, UC, UN, VA, VG, VI, VK, VL, VN, VO, VP, VQ, VR, VS, VY, WA, WB, WC, WD, WF, WG, WH, WJ, WK, WL, WM, WN, WP, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, XA, XB, XC, XD, XF, XG, XH, XJ, XK, YA, YB, YC, YD, YF, YG, YH, YJ, YK, YL, YM, YN, YP, YQ, YR, YS, YT, YV, YW, YX, YY, YZ, ZA, ZB, ZC, ZD, ZF, ZG, ZH, ZJ, ZK, ZL, ZM, ZN, ZP, ZQ, ZR, ZS, ZT, ZU, ZV, ZW, ZX, ZY, ZZ] + added: [43, 44, 1A, 1B, 1D, 1F, 1G, 1W, 2C, 3A, 3H, 4A, 4B, 4C, 4D, 4F, 4G, 4H, 5H, 5L, 5M, 6H, 6P, 7A, 7B, 8A, 8B, 8C, AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AL, AM, AP, AT, AV, B4, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, BV, BW, BX, BY, BZ, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CO, CP, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DG, DH, DI, DJ, DK, DL, DM, DN, DP, DR, DS, DT, DU, DV, DW, DX, DY, EC, ED, EE, EF, EG, EH, EI, EN, FB, FC, FD, FE, FI, FL, FO, FP, FR, FT, FW, FX, GB, GI, GL, GR, GU, GY, GZ, HA, HB, HC, HG, HN, HR, IA, IB, IC, ID, IE, IF, IG, IH, IK, IL, IN, IZ, JB, JC, JG, JR, JT, JY, KG, KI, LE, LG, LT, LU, LV, LZ, MA, MB, MC, ME, MR, MS, MT, MW, MX, NA, NE, NF, NG, NS, NT, NU, NV, O1, O2, O3, O4, O5, O6, O7, O8, O9, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PL, PN, PO, PP, PR, PT, PU, PV, PX, PY, PZ, QA, QB, QC, QD, QF, QG, QH, QJ, QK, QL, QM, QN, QP, QQ, QR, QS, RD, RG, RJ, RK, RL, RO, RT, RZ, SA, SB, SC, SD, SE, SH, SI, SK, SL, SM, SO, SP, SS, ST, SU, SV, SW, SY, SZ, T1, TB, TC, TD, TE, TG, TI, TK, TL, TN, TO, TR, TS, TT, TU, TV, TW, TY, TZ, UC, UN, VA, VG, VI, VK, VL, VN, VO, VP, VQ, VR, VS, VY, WA, WB, WC, WD, WF, WG, WH, WJ, WK, WL, WM, WN, WP, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, XA, XB, XC, XD, XF, XG, XH, XJ, XK, YA, YB, YC, YD, YF, YG, YH, YJ, YK, YL, YM, YN, YP, YQ, YR, YS, YT, YV, YW, YX, YY, YZ, ZA, ZB, ZC, ZD, ZF, ZG, ZH, ZJ, ZK, ZL, ZM, ZN, ZP, ZQ, ZR, ZS, ZT, ZU, ZV, ZW, ZX, ZY, ZZ] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/TypeCode + +Modifying element: + old: {PackagingMarkingCodeType}{0..*} in type {PackagingMarkingType} + new: {PackagingMarkingCodeType}{0..*} in type {PackagingMarkingType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/TypeCode + +Modifying element: + old: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} + new: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96, 97, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96, 97, ZZZ] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode + +Modifying element: + old: {PaymentTermsTypeCodeType}{0..1} in type {TradePaymentTermsType} + new: {PaymentTermsTypeCodeType}{0..1} in type {TradePaymentTermsType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, ZZZ] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/TypeCode + +Modifying element: + old: {PriceTypeCodeType}{0..1} in type {TradePriceType} + new: {PriceTypeCodeType}{0..1} in type {TradePriceType} + Changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, CA, CT, CU, DI, EC, NW, PC, PE, PK, PL, PT, PU, PV, PW, QT, SR, TB, TU, TW, WH, WI] + added: [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, CA, CT, CU, DI, EC, NW, PC, PE, PK, PL, PT, PU, PV, PW, QT, SR, TB, TU, TW, WH, WI] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/TypeCode + +Modifying element: + old: {TaxTypeCodeType}{0..1} in type {TradeTaxType} + new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} + Changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] + added: [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/TypeCode + +Modifying element: + old: {TransportMeansTypeCodeType}{0..1} in type {LogisticsTransportMeansType} + new: {TransportMeansTypeCodeType}{0..1} in type {LogisticsTransportMeansType} + Changed enumeration from [] to [1501, 1502, 1503, 1504, 1505, 1506, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1521, 1522, 1523, 1524, 1525, 1531, 1532, 1533, 1534, 1541, 1542, 1543, 1551, 1552, 1553, 1591, 1592, 1593, 1594, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1711, 1712, 1721, 1723, 1724, 1725, 1726, 1727, 1728, 1729, 1751, 1752, 1753, 1761, 1762, 1763, 1764, 1765, 1766, 1781, 1782, 2201, 2202, 2203, 2301, 2302, 2303, 2304, 2305, 3100, 3101, 3102, 3103, 3104, 3105, 3106, 3107, 3108, 3109, 3110, 3111, 3112, 3113, 3114, 3115, 3116, 3117, 3118, 3119, 3120, 3121, 3122, 3123, 3124, 3125, 3126, 3127, 3128, 3129, 3130, 3131, 3132, 3133, 3134, 3135, 3136, 3137, 3138, 3201, 3301, 3302, 3303, 3304, 4000, 5000, 8021, 8022, 8023, 8161, 8162, 8163, 8441, 8442, 8443, 8444, 8445, 8446, 8447, 8448, 8451, 8452, 8453, 8454] + added: [1501, 1502, 1503, 1504, 1505, 1506, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1521, 1522, 1523, 1524, 1525, 1531, 1532, 1533, 1534, 1541, 1542, 1543, 1551, 1552, 1553, 1591, 1592, 1593, 1594, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1711, 1712, 1721, 1723, 1724, 1725, 1726, 1727, 1728, 1729, 1751, 1752, 1753, 1761, 1762, 1763, 1764, 1765, 1766, 1781, 1782, 2201, 2202, 2203, 2301, 2302, 2303, 2304, 2305, 3100, 3101, 3102, 3103, 3104, 3105, 3106, 3107, 3108, 3109, 3110, 3111, 3112, 3113, 3114, 3115, 3116, 3117, 3118, 3119, 3120, 3121, 3122, 3123, 3124, 3125, 3126, 3127, 3128, 3129, 3130, 3131, 3132, 3133, 3134, 3135, 3136, 3137, 3138, 3201, 3301, 3302, 3303, 3304, 4000, 5000, 8021, 8022, 8023, 8161, 8162, 8163, 8441, 8442, 8443, 8444, 8445, 8446, 8447, 8448, 8451, 8452, 8453, 8454] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/TypeCode + +Modifying element: + old: {GoodsTypeExtensionCodeType}{0..1} in type {SupplyChainConsignmentItemType} + new: {GoodsTypeExtensionCodeType}{0..1} in type {SupplyChainConsignmentItemType} + Changed enumeration from [] to [ZZZ] + added: [ZZZ] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/TypeExtensionCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/TypeExtensionCode + +Modifying element: + old: {TransportEquipmentFullnessCodeType}{0..1} in type {LogisticsTransportEquipmentType} + new: {TransportEquipmentFullnessCodeType}{0..1} in type {LogisticsTransportEquipmentType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/UsedCapacityCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/UsedCapacityCode + Modifying element: old: {DateTimeType}{0..1} in type {TradeSettlementFinancialCardType} new: {DateOnlyFormattedDateTimeType}{0..1} in type {TradeSettlementFinancialCardType} @@ -14051,8 +16958,8 @@ ELEMENTS: Added elements in XSD: 98 Added elements in XML: 1828 - Modified elements in XSD: 18 - Modified elements in XML: 175 + Modified elements in XSD: 72 + Modified elements in XML: 2709 Removed elements from XSD: 6 Removed elements from XML: 45 diff --git a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt index fb7dfa2..25cc16c 100644 --- a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt +++ b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt @@ -115,6 +115,10 @@ In type {DateOnlyFormattedDateTimeType} modifying element: Restricted cardinality from 0..1 to 1..1 Changed compositor from CHOICE to SEQUENCE In type {DateTimeType} removed {dateTime}{0..1} +In type {DeliveryAdjustmentType} modifying element: + old: {AdjustmentReasonCodeType}{0..1} in type {DeliveryAdjustmentType} + new: {AdjustmentReasonCodeType}{0..1} in type {DeliveryAdjustmentType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] In type {DeliveryTermsCodeType} modifying attribute: old: @listAgencyID{DeliveryTermsCodeListAgencyIDContentType}{0..1} in type {DeliveryTermsCodeType} new: @listAgencyID{DeliveryTermsCodeListAgencyIDContentType}{0..1} in type {DeliveryTermsCodeType} @@ -136,6 +140,10 @@ In type {DocumentCodeType} removed @listID {token}{0..1} In type {DocumentCodeType} removed @listURI {anyURI}{0..1} In type {DocumentCodeType} removed @listVersionID {token}{0..1} In type {DocumentCodeType} removed @name {string}{0..1} +In type {DocumentLineDocumentType} modifying element: + old: {LineStatusCodeType}{0..1} in type {DocumentLineDocumentType} + new: {LineStatusCodeType}{0..1} in type {DocumentLineDocumentType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119] In type {DocumentStatusCodeType} modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType} new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType} @@ -143,6 +151,14 @@ In type {DocumentStatusCodeType} modifying attribute: In type {DocumentStatusCodeType} removed @listID {token}{0..1} In type {DocumentStatusCodeType} removed @listVersionID {token}{0..1} In type {DocumentStatusCodeType} removed @name {string}{0..1} +In type {ExchangedDocumentType} modifying element: + old: {MessageFunctionCodeType}{0..1} in type {ExchangedDocumentType} + new: {MessageFunctionCodeType}{0..1} in type {ExchangedDocumentType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73] +In type {ExchangedDocumentType} modifying element: + old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} + new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] In type {FormattedDateTimeType} modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType} new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} @@ -166,6 +182,18 @@ In type {GoodsTypeCodeType} removed @name {string}{0..1} In type {GoodsTypeExtensionCodeType} removed @listID {token}{0..1} In type {GoodsTypeExtensionCodeType} removed @listVersionID {token}{0..1} In type {GoodsTypeExtensionCodeType} removed @name {string}{0..1} +In type {HeaderTradeSettlementType} modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + New restriction by enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] +In type {HeaderTradeSettlementType} modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + New restriction by enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] +In type {HeaderTradeSettlementType} modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + New restriction by enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] In type {LineStatusCodeType} modifying attribute: old: @listAgencyID{LineStatusCodeListAgencyIDContentType}{0..1} in type {LineStatusCodeType} new: @listAgencyID{LineStatusCodeListAgencyIDContentType}{0..1} in type {LineStatusCodeType} @@ -186,6 +214,50 @@ In type {LocationFunctionCodeType} modifying attribute: In type {LogisticsChargeCalculationBasisCodeType} removed @listID {token}{0..1} In type {LogisticsChargeCalculationBasisCodeType} removed @listVersionID {token}{0..1} In type {LogisticsChargeCalculationBasisCodeType} removed @name {string}{0..1} +In type {LogisticsLocationType} modifying element: + old: {CodeType}{0..1} in type {LogisticsLocationType} + new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] +In type {LogisticsServiceChargeType} modifying element: + old: {LogisticsChargeCalculationBasisCodeType}{0..1} in type {LogisticsServiceChargeType} + new: {LogisticsChargeCalculationBasisCodeType}{0..1} in type {LogisticsServiceChargeType} + New restriction by enumeration from [] to [ZZZ] +In type {LogisticsServiceChargeType} modifying element: + old: {FreightChargeTypeIDType}{0..1} in type {LogisticsServiceChargeType} + new: {FreightChargeTypeIDType}{0..1} in type {LogisticsServiceChargeType} + New restriction by enumeration from [] to [100000, 100999, 101000, 101002, 101003, 101004, 101005, 101006, 101007, 101008, 101009, 101010, 101011, 101012, 101013, 101014, 101015, 101016, 101017, 101018, 101019, 101020, 101021, 101021, 101021, 101021, 101021, 101021, 101021, 101021, 101022, 101024, 101027, 101028, 101029, 101031, 101033, 101034, 101035, 101036, 101037, 101038, 101039, 101040, 101041, 101042, 101043, 101044, 101045, 101046, 101047, 101048, 101049, 101050, 101051, 101052, 101053, 101054, 101056, 101057, 101058, 101059, 101060, 101061, 102000, 102002, 102003, 102004, 102005, 102006, 102011, 102012, 102013, 102014, 102015, 102016, 102017, 102018, 102019, 102020, 102021, 102022, 102023, 102024, 102025, 102026, 102027, 102028, 102029, 102030, 102041, 102042, 102043, 102043, 102044, 102045, 102046, 102047, 102049, 102050, 102051, 102052, 102070, 102071, 102072, 102073, 102074, 102075, 102076, 102077, 102078, 102079, 102080, 102081, 102082, 102083, 102084, 102085, 102086, 102087, 102088, 103000, 103001, 103002, 103003, 103004, 103005, 103006, 103007, 103008, 103009, 103010, 103011, 103012, 103013, 103015, 103016, 103017, 103018, 103019, 104000, 104002, 104003, 104004, 104004, 104005, 104006, 104007, 104008, 104009, 104010, 104011, 104012, 104013, 104014, 104015, 104016, 104024, 104024, 104024, 104025, 104027, 104028, 104029, 104030, 104031, 104032, 104036, 104037, 104038, 104039, 104041, 104042, 104043, 104044, 104045, 104046, 104052, 104052, 104052, 104052, 104055, 104056, 104059, 104060, 104063, 104064, 104068, 104069, 104070, 104071, 104072, 104073, 104074, 104075, 104076, 104077, 104078, 104079, 104080, 104081, 104082, 104083, 104084, 104085, 104102, 104102, 104104, 104106, 104107, 104108, 104109, 104110, 104111, 104112, 104113, 104114, 104115, 104116, 104118, 104119, 104120, 104121, 104124, 104125, 104125, 104125, 104125, 104127, 104129, 104130, 104131, 104132, 104134, 104135, 104135, 104135, 104135, 104136, 104137, 104137, 104137, 104138, 104138, 104139, 104139, 104139, 104139, 104140, 104141, 104142, 104144, 104144, 104144, 104145, 104146, 104148, 104149, 104150, 104151, 104152, 104153, 104154, 104155, 104156, 104157, 104158, 104159, 104159, 104160, 104161, 104162, 104163, 104164, 104165, 104166, 104167, 104168, 104169, 104170, 104172, 104173, 104175, 104176, 104177, 104178, 104179, 104180, 104181, 104182, 104183, 104185, 104186, 104188, 104189, 104190, 104191, 104192, 104193, 104194, 104195, 104196, 104197, 104198, 104199, 104200, 104201, 104202, 104203, 104204, 104205, 104206, 104207, 104208, 104209, 104210, 104211, 104212, 104213, 105000, 105001, 105002, 105003, 105004, 105005, 105006, 105007, 105009, 105010, 105012, 105013, 105014, 105015, 105016, 105017, 105018, 105020, 106000, 106001, 106002, 106003, 106004, 106005, 106006, 106007, 106008, 106009, 106010, 106011, 106012, 106013, 106014, 106015, 106016, 106018, 107000, 107001, 107001, 107002, 108000, 108001, 108002, 108003, 108004, 108005, 108006, 109000, 109001, 110000, 110001, 110002, 110003, 110004, 110005, 110006, 110007, 110008, 110009, 110010, 110011, 200000, 200999, 202000, 202001, 202002, 202003, 202004, 202005, 202006, 202007, 202008, 202009, 202010, 202011, 202012, 202013, 203000, 203001, 203002, 203003, 203004, 203005, 203006, 203007, 203008, 203009, 203010, 203011, 203012, 203013, 203014, 203015, 203016, 203017, 203018, 203019, 203020, 203021, 203022, 203023, 203024, 203025, 203026, 203027, 203028, 203029, 203030, 203031, 203032, 203033, 203034, 203035, 203036, 203037, 203038, 203039, 203040, 203041, 203042, 203043, 203044, 203045, 203046, 203047, 203048, 203049, 203050, 203051, 203052, 203053, 203054, 203055, 203056, 203057, 203058, 203059, 203060, 203061, 203062, 203063, 203064, 203065, 203066, 203067, 203068, 203069, 203070, 203071, 203072, 203073, 203074, 203075, 203076, 203077, 203078, 203079, 203080, 203081, 203082, 203083, 203084, 203085, 203086, 203087, 203088, 203089, 203090, 203091, 203092, 203093, 203094, 203095, 203096, 203097, 203098, 203099, 203100, 203102, 203104, 203105, 203106, 203107, 203108, 203109, 203110, 203111, 203112, 203113, 203114, 203115, 203116, 203117, 203118, 203119, 203120, 203121, 203122, 203123, 203124, 203125, 203126, 203127, 203130, 203130, 203131, 203133, 203134, 203134, 203134, 203135, 203136, 203137, 203138, 203139, 203140, 203141, 203142, 203143, 203144, 203145, 203146, 203147, 203148, 203149, 203150, 203151, 203152, 203153, 203154, 203155, 203156, 203157, 203158, 203159, 203160, 203161, 203162, 203163, 203164, 203165, 203166, 203167, 203168, 203169, 203170, 203171, 203172, 203173, 203174, 203175, 203176, 203177, 203178, 203179, 203180, 203181, 203182, 203183, 203184, 203185, 203186, 203187, 203188, 203189, 203190, 203191, 203192, 203193, 203194, 203195, 203196, 203197, 203198, 203199, 203200, 203201, 203202, 203203, 203204, 203205, 204000, 204001, 204002, 204003, 204004, 204005, 204006, 204007, 204008, 204009, 204010, 204011, 204012, 204013, 204014, 204015, 204016, 204017, 204018, 204019, 204020, 204021, 204022, 204023, 204024, 204025, 204026, 204027, 204028, 204029, 204030, 204031, 204032, 204033, 204034, 204035, 204036, 204037, 204038, 204039, 204040, 204041, 204042, 204043, 204044, 204045, 204046, 204047, 204048, 204049, 204050, 204051, 204052, 204053, 204054, 204055, 204056, 204057, 204058, 204059, 204060, 204061, 204062, 204063, 204064, 204065, 204066, 204067, 204068, 204069, 204070, 204071, 204072, 204073, 204074, 204075, 204076, 204077, 204078, 204079, 204080, 204081, 204082, 204083, 204084, 204085, 204086, 204087, 204088, 204089, 204090, 204091, 204092, 204093, 204094, 204095, 204096, 204097, 204098, 204099, 204100, 204101, 204102, 204103, 204104, 204105, 204106, 204107, 204108, 204109, 204110, 204111, 204112, 204113, 204114, 204115, 204116, 204117, 204118, 204119, 204120, 204121, 204122, 204123, 204124, 204125, 204126, 204127, 204128, 204129, 204130, 204131, 204132, 204133, 204134, 204135, 204136, 204137, 204138, 204139, 204140, 204141, 204142, 204143, 204144, 204145, 204146, 204148, 204150, 204151, 204152, 204153, 204154, 204155, 204156, 204157, 204158, 204159, 204160, 204161, 204162, 204163, 204164, 204165, 204166, 204167, 204168, 204169, 204170, 204171, 204172, 204173, 204175, 204176, 204177, 204178, 204179, 204180, 204181, 204182, 204183, 204184, 204185, 204186, 204187, 204188, 204189, 204190, 204191, 204192, 204193, 204194, 204195, 204196, 204197, 204198, 204199, 204200, 204201, 204202, 204203, 204204, 204205, 204206, 204207, 204208, 204209, 204210, 204211, 204212, 204213, 204214, 204215, 204216, 204217, 204218, 204219, 205000, 205001, 205002, 205003, 205004, 205005, 205006, 205007, 205008, 205009, 205010, 205011, 205012, 205013, 205014, 205015, 205016, 205017, 205018, 205019, 205020, 205021, 205022, 205023, 205025, 205027, 205028, 205029, 205030, 205031, 205032, 205033, 205034, 205035, 205036, 205037, 205038, 205039, 205040, 205041, 205042, 205043, 205044, 205045, 205046, 205047, 205048, 205049, 205050, 205051, 205052, 205053, 205054, 205055, 205056, 205057, 205058, 205059, 205060, 205061, 205062, 206000, 206001, 206002, 206003, 206004, 206005, 206006, 206007, 206008, 206009, 206010, 206011, 206012, 206013, 206014, 206015, 206016, 206017, 206018, 206019, 206020, 206021, 206023, 206025, 206026, 206027, 206028, 206029, 206030, 206031, 206032, 206033, 206034, 206035, 206036, 206037, 206038, 206039, 206040, 206041, 206042, 206043, 206044, 206045, 206046, 206047, 206048, 206049, 206050, 206051, 206052, 206053, 206054, 206055, 206056, 206057, 206058, 206059, 206060, 206061, 206062, 206063, 206064, 206065, 206066, 207000, 207001, 207002, 207003, 207004, 207005, 207006, 207007, 207008, 207009, 207010, 207011, 207012, 207013, 207014, 207015, 207016, 207017, 207018, 207019, 207020, 207022, 207023, 207024, 207025, 207026, 207027, 207028, 207029, 207030, 207032, 207033, 207034, 207035, 207036, 207037, 207038, 207039, 207040, 207041, 207042, 207043, 207044, 207045, 207046, 207047, 207048, 207049, 207050, 207051, 207052, 207053, 207054, 207055, 207056, 207057, 207058, 207059, 207060, 207061, 207062, 208000, 208001, 208002, 208003, 208004, 208005, 208006, 208007, 208008, 208009, 208010, 208011, 208012, 208013, 208014, 208015, 208016, 208017, 208018, 208019, 208020, 208021, 208022, 208023, 208024, 208025, 208026, 208027, 208028, 208030, 208030, 208030, 208030, 208031, 208032, 208034, 208035, 208036, 208037, 208038, 208039, 208040, 208041, 208042, 208043, 208044, 208045, 208046, 208047, 208048, 208049, 208050, 208051, 209000, 209001, 209002, 209003, 209004, 209005, 209006, 209007, 209008, 209009, 209010, 209011, 209012, 209013, 209014, 209015, 209032, 209033, 209034, 209058, 209060, 209061, 209062, 209063, 209064, 209065, 209066, 209067, 209068, 209069, 209070, 209071, 209072, 209073, 209074, 210000, 210001, 210002, 210003, 210004, 210005, 210006, 210007, 210008, 210009, 210010, 210011, 210012, 210013, 210014, 210015, 210016, 210017, 210018, 210019, 210020, 210021, 210022, 210023, 210024, 210025, 210026, 210027, 210028, 210029, 210030, 210031, 210032, 210033, 210034, 210035, 210036, 210037, 210038, 210039, 210040, 210041, 210041, 210041, 210041, 210041, 210042, 210043, 210044, 210045, 210046, 210047, 210048, 210049, 210050, 210051, 210052, 210053, 210054, 210055, 210056, 210057, 210058, 210059, 210060, 210061, 210062, 211000, 211001, 211002, 211003, 211004, 211005, 211006, 211007, 211008, 211009, 211010, 211011, 211012, 211013, 211014, 211015, 211016, 211017, 211018, 211019, 211020, 211021, 211022, 211023, 211024, 211025, 211026, 211027, 211028, 211029, 211030, 211031, 211032, 211033, 211034, 211035, 211036, 211037, 211038, 211039, 211040, 211041, 211042, 211043, 211044, 212000, 212001, 212002, 212003, 212004, 213000, 213001, 213002, 213003, 213004, 213005, 214000, 214001, 214002, 214003, 214004, 214004, 214004, 215000, 215001, 215002, 215002, 215004, 215005, 215005, 215005, 215005, 215006, 215007, 215008, 215009, 215010, 215011, 216000, 216001, 216002, 216003, 216004, 216005, 216006, 216007, 216008, 216009, 216010, 216011, 216012, 216013, 216014, 216015, 216016, 216016, 216016, 216016, 216017, 216019, 216020, 216021, 216022, 216023, 216024, 216025, 216026, 216027, 216028, 216029, 216030, 216031, 216031, 216031, 216032, 216033, 216034, 216035, 216036, 216037, 216038, 216039, 216040, 216041, 216042, 216044, 216045, 216046, 216047, 216048, 216049, 216050, 216051, 216052, 216053, 216054, 216055, 216056, 216057, 216058, 216059, 216060, 216061, 216062, 216063, 216064, 216065, 216066, 216067, 216068, 216069, 216070, 216071, 216072, 216073, 216074, 216075, 216076, 216077, 216078, 216079, 216080, 216081, 216082, 216083, 216084, 216085, 216086, 216087, 216088, 216089, 216090, 216091, 216092, 216093, 216094, 300000, 300999, 301000, 301001, 301001, 301001, 301002, 301002, 301002, 301002, 301003, 301004, 301005, 301006, 301007, 301008, 301009, 301010, 301011, 301011, 301011, 301011, 301012, 301013, 301013, 301014, 301015, 301016, 301017, 301018, 301019, 301020, 301021, 301022, 301023, 301024, 301025, 301026, 301027, 301028, 301029, 301030, 301031, 301031, 301032, 301033, 301034, 301035, 301036, 301037, 301038, 301039, 301040, 301041, 301042, 301043, 301044, 301045, 301046, 301047, 301048, 301048, 301048, 301048, 301048, 301048, 301048, 301049, 301050, 301051, 301052, 301053, 301054, 301055, 301056, 301057, 301058, 301059, 301060, 301061, 301062, 301063, 301064, 301065, 301066, 301067, 301068, 301069, 301070, 301072, 301073, 301074, 301075, 301076, 301077, 301078, 302000, 302001, 302002, 302003, 302004, 302004, 302004, 302004, 302004, 302005, 302006, 302007, 302008, 302009, 302010, 302011, 302012, 302013, 302014, 302016, 302017, 302018, 400000, 400999, 401000, 401001, 401003, 401004, 401005, 401006, 401009, 401015, 401015, 401016, 401017, 401018, 402000, 402001, 402002, 402003, 402004, 402005, 402006, 402007, 500000, 500999, 501000, 501001, 501002, 501003, 501004, 501005, 501005, 501005, 501005, 501006, 501006, 501006, 501006, 501007, 501007, 501008, 501009, 501009, 501009, 501009, 502000, 502001, 502002, 502002, 502002, 502003, 502004, 502005, 502006, 600000, 600018, 600926, 600999, 601000, 601001, 601002, 601003, 601003, 601003, 601003, 601004, 601005, 601006, 601007, 601008, 602000, 602001, 602002, 602003, 603000, 603001, 603002, 603003, 603004, 603005, 603006, 603007, 603008, 603009, 603010, 604000, 604001, 604001, 604001, 604002, 605000, 606000, 606003, 606003, 606004, 606005, 606006, 606007, 606008, 606009, 607000, 607001, 607001, 607001, 608000, 608001, 608001, 608001, 608001, 608002, 608003, 608003, 608003, 608003, 608003, 609000, 609001, 609002, 609003, 609004, 609005, 609006, 609007, 609008, 609008, 609008, 609008, 609008, 609009, 609010, 609011, 609012, 609013, 609015, 609016, 609017, 609018, 609019, 609020, 609022, 609023, 609024, 609025, 609026, 609027, 609028, 609029, 609030, 609031, 609031, 609032, 609032, 609033, 609034, 609035, 609036, 609037, 609038, 609039, 609040, 609041, 609041, 609042, 609043, 609043, 609044, 609045, 609046, 609047, 609049, 609050, 609051, 609052, 609053, 609054, 609055, 609056, 609056, 609056, 609057, 609058, 609059, 609060, 609061, 609062, 609063, 609064, 609065, 609067, 609068, 609069, 609070, 609071, 609072, 609073, 609074, 609075, 609077, 609078, 609079, 609080, 609081, 609082, 609083, 609084, 609085, 609087, 609088, 609089, 609090, 609091, 609092, 609093, 609094, 609095, 609096, 609097, 609098, 609099, 609100, 609101, 609102, 609103, 609104, 609105, 609106, 609107, 609111, 609112, 609113, 609115, 609116, 609117, 609118, 609119, 609120, 609122, 609123, 609124, 609125, 609126, 609128, 609129, 609130, 609131, 609132, 609133, 609134, 609135, 609136, 609137, 609138, 609139, 609140, 609141, 609142, 609143, 609144, 609145] +In type {LogisticsServiceChargeType} modifying element: + old: {ChargePayingPartyRoleCodeType}{0..1} in type {LogisticsServiceChargeType} + new: {ChargePayingPartyRoleCodeType}{0..1} in type {LogisticsServiceChargeType} + New restriction by enumeration from [] to [AB, AE, AF, AH, AQ, AR, AT, AU, CA, CG, CN, CPD, CX, CZ, DGB, EX, FW, GS, IM, IV, PE] +In type {LogisticsServiceChargeType} modifying element: + old: {CodeType}{0..1} in type {LogisticsServiceChargeType} + new: {TransportServicePaymentArrangementCodeType}{0..1} in type {LogisticsServiceChargeType} + New restriction by enumeration from [] to [A, B, C, P] +In type {LogisticsServiceChargeType} modifying element: + old: {FreightChargeTariffClassCodeType}{0..1} in type {LogisticsServiceChargeType} + new: {FreightChargeTariffClassCodeType}{0..1} in type {LogisticsServiceChargeType} + New restriction by enumeration from [] to [A, B, C, D, E, F, G, H, K, M, N, Q, R, S] +In type {LogisticsTransportEquipmentType} modifying element: + old: {TransportEquipmentCategoryCodeType}{0..1} in type {LogisticsTransportEquipmentType} + new: {TransportEquipmentCategoryCodeType}{0..1} in type {LogisticsTransportEquipmentType} + New restriction by enumeration from [] to [AA, AB, AD, AE, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AT, BB, BL, BPN, BPO, BPP, BPQ, BPR, BPS, BPT, BPU, BPV, BPW, BPX, BPY, BPZ, BR, BX, CH, CN, DPA, DPB, DPC, DPD, DPE, DPF, DPG, DPH, DPI, DPJ, DPK, DPL, DPM, DPN, DPO, EFP, EFQ, EFR, EFS, EFT, EFU, EFV, EFW, EFX, EFY, EFZ, EGA, EGB, EGC, EGD, EGE, EGF, EGG, EGH, EGI, EYP, FPN, FPR, IL, LAR, LU, MPA, PA, PBP, PFP, PL, PPA, PST, RF, RG, RGF, RO, RR, SPP, STR, SW, TE, TP, TS, TSU, UL] +In type {LogisticsTransportEquipmentType} modifying element: + old: {TransportEquipmentFullnessCodeType}{0..1} in type {LogisticsTransportEquipmentType} + new: {TransportEquipmentFullnessCodeType}{0..1} in type {LogisticsTransportEquipmentType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13] +In type {LogisticsTransportMeansType} modifying element: + old: {TransportMeansTypeCodeType}{0..1} in type {LogisticsTransportMeansType} + new: {TransportMeansTypeCodeType}{0..1} in type {LogisticsTransportMeansType} + New restriction by enumeration from [] to [1501, 1502, 1503, 1504, 1505, 1506, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1521, 1522, 1523, 1524, 1525, 1531, 1532, 1533, 1534, 1541, 1542, 1543, 1551, 1552, 1553, 1591, 1592, 1593, 1594, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1711, 1712, 1721, 1723, 1724, 1725, 1726, 1727, 1728, 1729, 1751, 1752, 1753, 1761, 1762, 1763, 1764, 1765, 1766, 1781, 1782, 2201, 2202, 2203, 2301, 2302, 2303, 2304, 2305, 3100, 3101, 3102, 3103, 3104, 3105, 3106, 3107, 3108, 3109, 3110, 3111, 3112, 3113, 3114, 3115, 3116, 3117, 3118, 3119, 3120, 3121, 3122, 3123, 3124, 3125, 3126, 3127, 3128, 3129, 3130, 3131, 3132, 3133, 3134, 3135, 3136, 3137, 3138, 3201, 3301, 3302, 3303, 3304, 4000, 5000, 8021, 8022, 8023, 8161, 8162, 8163, 8441, 8442, 8443, 8444, 8445, 8446, 8447, 8448, 8451, 8452, 8453, 8454] +In type {LogisticsTransportMovementType} modifying element: + old: {TransportModeCodeType}{0..1} in type {LogisticsTransportMovementType} + new: {TransportModeCodeType}{0..1} in type {LogisticsTransportMovementType} + New restriction by enumeration from [] to [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] +In type {LogisticsTransportMovementType} modifying element: + old: {TransportMovementStageCodeType}{0..1} in type {LogisticsTransportMovementType} + new: {TransportMovementStageCodeType}{0..1} in type {LogisticsTransportMovementType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34] In type {MeasureType} removed @unitCodeListVersionID {token}{0..1} In type {MessageFunctionCodeType} modifying attribute: old: @listAgencyID{MessageFunctionCodeListAgencyIDContentType}{0..1} in type {MessageFunctionCodeType} @@ -205,6 +277,14 @@ In type {PackagingMarkingCodeType} modifying attribute: In type {PackagingMarkingCodeType} removed @listID {token}{0..1} In type {PackagingMarkingCodeType} removed @listURI {anyURI}{0..1} In type {PackagingMarkingCodeType} removed @listVersionID {token}{0..1} +In type {PackagingMarkingType} modifying element: + old: {AutomaticDataCaptureMethodCodeType}{0..*} in type {PackagingMarkingType} + new: {AutomaticDataCaptureMethodCodeType}{0..*} in type {PackagingMarkingType} + New restriction by enumeration from [] to [50, 51, 52, 64, 65, 67, 78, 79, 81, 82] +In type {PackagingMarkingType} modifying element: + old: {PackagingMarkingCodeType}{0..*} in type {PackagingMarkingType} + new: {PackagingMarkingCodeType}{0..*} in type {PackagingMarkingType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80] In type {PartyRoleCodeType} modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} @@ -264,6 +344,34 @@ In type {ReferenceCodeType} modifying attribute: In type {ReferenceCodeType} removed @listID {token}{0..1} In type {ReferenceCodeType} removed @listVersionID {token}{0..1} In type {ReferenceCodeType} removed @name {string}{0..1} +In type {ReferencedDocumentType} modifying element: + old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] +In type {ReferencedDocumentType} modifying element: + old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} + new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] +In type {ReferencedDocumentType} modifying element: + old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType} + new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] +In type {SpatialDimensionType} modifying element: + old: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType} + new: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] +In type {SupplyChainConsignmentItemType} modifying element: + old: {GoodsTypeCodeType}{0..1} in type {SupplyChainConsignmentItemType} + new: {GoodsTypeCodeType}{0..1} in type {SupplyChainConsignmentItemType} + New restriction by enumeration from [] to [ZZZ] +In type {SupplyChainConsignmentItemType} modifying element: + old: {GoodsTypeExtensionCodeType}{0..1} in type {SupplyChainConsignmentItemType} + new: {GoodsTypeExtensionCodeType}{0..1} in type {SupplyChainConsignmentItemType} + New restriction by enumeration from [] to [ZZZ] +In type {SupplyChainPackagingType} modifying element: + old: {PackageTypeCodeType}{0..1} in type {SupplyChainPackagingType} + new: {PackageTypeCodeType}{0..1} in type {SupplyChainPackagingType} + New restriction by enumeration from [] to [43, 44, 1A, 1B, 1D, 1F, 1G, 1W, 2C, 3A, 3H, 4A, 4B, 4C, 4D, 4F, 4G, 4H, 5H, 5L, 5M, 6H, 6P, 7A, 7B, 8A, 8B, 8C, AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AL, AM, AP, AT, AV, B4, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, BV, BW, BX, BY, BZ, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CO, CP, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DG, DH, DI, DJ, DK, DL, DM, DN, DP, DR, DS, DT, DU, DV, DW, DX, DY, EC, ED, EE, EF, EG, EH, EI, EN, FB, FC, FD, FE, FI, FL, FO, FP, FR, FT, FW, FX, GB, GI, GL, GR, GU, GY, GZ, HA, HB, HC, HG, HN, HR, IA, IB, IC, ID, IE, IF, IG, IH, IK, IL, IN, IZ, JB, JC, JG, JR, JT, JY, KG, KI, LE, LG, LT, LU, LV, LZ, MA, MB, MC, ME, MR, MS, MT, MW, MX, NA, NE, NF, NG, NS, NT, NU, NV, O1, O2, O3, O4, O5, O6, O7, O8, O9, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PL, PN, PO, PP, PR, PT, PU, PV, PX, PY, PZ, QA, QB, QC, QD, QF, QG, QH, QJ, QK, QL, QM, QN, QP, QQ, QR, QS, RD, RG, RJ, RK, RL, RO, RT, RZ, SA, SB, SC, SD, SE, SH, SI, SK, SL, SM, SO, SP, SS, ST, SU, SV, SW, SY, SZ, T1, TB, TC, TD, TE, TG, TI, TK, TL, TN, TO, TR, TS, TT, TU, TV, TW, TY, TZ, UC, UN, VA, VG, VI, VK, VL, VN, VO, VP, VQ, VR, VS, VY, WA, WB, WC, WD, WF, WG, WH, WJ, WK, WL, WM, WN, WP, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, XA, XB, XC, XD, XF, XG, XH, XJ, XK, YA, YB, YC, YD, YF, YG, YH, YJ, YK, YL, YM, YN, YP, YQ, YR, YS, YT, YV, YW, YX, YY, YZ, ZA, ZB, ZC, ZD, ZF, ZG, ZH, ZJ, ZK, ZL, ZM, ZN, ZP, ZQ, ZR, ZS, ZT, ZU, ZV, ZW, ZX, ZY, ZZ] In type {TaxCategoryCodeType} modifying attribute: old: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} new: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} @@ -285,6 +393,114 @@ In type {TimeReferenceCodeType} modifying attribute: In type {TimeReferenceCodeType} removed @listID {token}{0..1} In type {TimeReferenceCodeType} removed @listVersionID {token}{0..1} In type {TimeReferenceCodeType} removed @name {string}{0..1} +In type {TradeAccountingAccountType} modifying element: + old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType} + new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6] +In type {TradeAccountingAccountType} modifying element: + old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType} + new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType} + New restriction by enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] +In type {TradeAccountingAccountType} modifying element: + old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType} + new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7] +In type {TradeAddressType} modifying element: + old: {CountryIDType}{0..1} in type {TradeAddressType} + new: {CountryIDType}{0..1} in type {TradeAddressType} + New restriction by enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] +In type {TradeAllowanceChargeType} modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] +In type {TradeAllowanceChargeType} modifying element: + old: {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106] +In type {TradeContactType} modifying element: + old: {ContactTypeCodeType}{0..1} in type {TradeContactType} + new: {ContactTypeCodeType}{0..1} in type {TradeContactType} + New restriction by enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] +In type {TradeCountryType} modifying element: + old: {CountryIDType}{0..1} in type {TradeCountryType} + new: {CountryIDType}{0..1} in type {TradeCountryType} + New restriction by enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] +In type {TradeCurrencyExchangeType} modifying element: + old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + New restriction by enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] +In type {TradeCurrencyExchangeType} modifying element: + old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + New restriction by enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] +In type {TradeDeliveryTermsType} modifying element: + old: {DeliveryTermsCodeType}{0..1} in type {TradeDeliveryTermsType} + new: {DeliveryTermsCodeType}{0..1} in type {TradeDeliveryTermsType} + New restriction by enumeration from [] to [1, 2, CFR, CIF, CIP, CPT, DAP, DDP, DPU, EXW, FAS, FCA, FOB] +In type {TradeLocationType} modifying element: + old: {CountryIDType}{0..1} in type {TradeLocationType} + new: {CountryIDType}{0..1} in type {TradeLocationType} + New restriction by enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] +In type {TradePartyType} modifying element: + old: {PartyRoleCodeType}{0..*} in type {TradePartyType} + new: {PartyRoleCodeType}{0..*} in type {TradePartyType} + New restriction by enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] +In type {TradePaymentTermsType} modifying element: + old: {PaymentTermsEventTimeReferenceCodeType}{0..1} in type {TradePaymentTermsType} + new: {PaymentTermsEventTimeReferenceCodeType}{0..1} in type {TradePaymentTermsType} + New restriction by enumeration from [] to [5, 24, 29, 45, 71] +In type {TradePaymentTermsType} modifying element: + old: {PaymentTermsIDType}{0..1} in type {TradePaymentTermsType} + new: {PaymentTermsIDType}{0..1} in type {TradePaymentTermsType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7] +In type {TradePaymentTermsType} modifying element: + old: {PaymentTermsTypeCodeType}{0..1} in type {TradePaymentTermsType} + new: {PaymentTermsTypeCodeType}{0..1} in type {TradePaymentTermsType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, ZZZ] +In type {TradePriceType} modifying element: + old: {PriceTypeCodeType}{0..1} in type {TradePriceType} + new: {PriceTypeCodeType}{0..1} in type {TradePriceType} + New restriction by enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, CA, CT, CU, DI, EC, NW, PC, PE, PK, PL, PT, PU, PV, PW, QT, SR, TB, TU, TW, WH, WI] +In type {TradeSettlementPaymentMeansType} modifying element: + old: {PaymentGuaranteeMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} + new: {PaymentGuaranteeMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} + New restriction by enumeration from [] to [1, 10, 11, 12, 13, 14, 20, 21, 23, 24, 45, ZZZ] +In type {TradeSettlementPaymentMeansType} modifying element: + old: {PaymentMeansChannelCodeType}{0..1} in type {TradeSettlementPaymentMeansType} + new: {PaymentMeansChannelCodeType}{0..1} in type {TradeSettlementPaymentMeansType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, ZZZ] +In type {TradeSettlementPaymentMeansType} modifying element: + old: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} + new: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96, 97, ZZZ] +In type {TradeTaxType} modifying element: + old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} + new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} + New restriction by enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] +In type {TradeTaxType} modifying element: + old: {CurrencyCodeType}{0..1} in type {TradeTaxType} + new: {CurrencyCodeType}{0..1} in type {TradeTaxType} + New restriction by enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] +In type {TradeTaxType} modifying element: + old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] +In type {TradeTaxType} modifying element: + old: {TaxTypeCodeType}{0..1} in type {TradeTaxType} + new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} + New restriction by enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] +In type {TransportCargoType} modifying element: + old: {CargoOperationalCategoryCodeType}{0..1} in type {TransportCargoType} + new: {CargoOperationalCategoryCodeType}{0..1} in type {TransportCargoType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25] +In type {TransportCargoType} modifying element: + old: {CargoCommodityCategoryCodeType}{0..1} in type {TransportCargoType} + new: {CargoCommodityCategoryCodeType}{0..1} in type {TransportCargoType} + New restriction by enumeration from [] to [ZZZ] +In type {TransportCargoType} modifying element: + old: {CargoCategoryCodeType}{0..1} in type {TransportCargoType} + new: {CargoCategoryCodeType}{0..1} in type {TransportCargoType} + New restriction by enumeration from [] to [0, 1, 2, 3, 4, 5, 6, 7, 9] In type {TransportEquipmentCategoryCodeType} modifying attribute: old: @listAgencyID{TransportEquipmentCategoryCodeListAgencyIDContentType}{0..1} in type {TransportEquipmentCategoryCodeType} new: @listAgencyID{TransportEquipmentCategoryCodeListAgencyIDContentType}{0..1} in type {TransportEquipmentCategoryCodeType} @@ -325,6 +541,14 @@ In type {TransportServicePaymentArrangementCodeType} modifying attribute: new: @listAgencyID{TransportServicePaymentArrangementCodeListAgencyIDContentType}{0..1} in type {TransportServicePaymentArrangementCodeType} Changed fixed default from null to 6 New restriction by enumeration from [] to [6] +In type {UniversalCommunicationType} modifying element: + old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType} + new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType} + New restriction by enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] +In type {ValuationBreakdownStatementType} modifying element: + old: {CurrencyCodeType}{1..1} in type {ValuationBreakdownStatementType} + new: {CurrencyCodeType}{1..1} in type {ValuationBreakdownStatementType} + New restriction by enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] In type {VolumeUnitMeasureType} modifying attribute: old: @unitCode{VolumeUnitMeasureUnitCodeContentType}{0..1} in type {VolumeUnitMeasureType} new: @unitCode{MeasurementUnitCommonCodeVolumeContentType}{0..1} in type {VolumeUnitMeasureType} diff --git a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt index 2fba09b..7533044 100644 --- a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt +++ b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt @@ -5,43 +5,53 @@ /CrossIndustryInvoice/ExchangedDocument/FirstVersionIssueDateTime added {DateTimeType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/ID modifying element: old: {IDType}{1..1} in type {ExchangedDocumentType}new: {IDType}{0..1} in type {ExchangedDocumentType} changed cardinality from 1..1 to 0..1 /CrossIndustryInvoice/ExchangedDocument/IncludedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -50,17 +60,20 @@ /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -68,10 +81,12 @@ /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/ExchangedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/ExchangedDocument/PurposeCode modifying element: old: {MessageFunctionCodeType}{0..1} in type {ExchangedDocumentType}new: {MessageFunctionCodeType}{0..1} in type {ExchangedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73] /CrossIndustryInvoice/ExchangedDocument/PurposeCode/@listAgencyID modifying attribute: old: @listAgencyID{MessageFunctionCodeListAgencyIDContentType}{0..1} in type {MessageFunctionCodeType}new: @listAgencyID{MessageFunctionCodeListAgencyIDContentType}{0..1} in type {MessageFunctionCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/ExchangedDocument/PurposeCode/@listID removed @listID {token}{0..1} in type {MessageFunctionCodeType} /CrossIndustryInvoice/ExchangedDocument/PurposeCode/@listURI removed @listURI {anyURI}{0..1} in type {MessageFunctionCodeType} @@ -80,6 +95,7 @@ /CrossIndustryInvoice/ExchangedDocument/RequestedResponseTypeCode added {CodeType}{0..*} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/SignatoryDocumentAuthentication added {DocumentAuthenticationType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/SubtypeCode added {CodeType}{0..1} in type {ExchangedDocumentType} +/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -94,43 +110,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -139,17 +165,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -157,73 +186,89 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryDiscontinuationCode added {CodeType}{0..1} in type {TradeDeliveryTermsType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode modifying element: old: {DeliveryTermsCodeType}{0..1} in type {TradeDeliveryTermsType}new: {DeliveryTermsCodeType}{0..1} in type {TradeDeliveryTermsType}changed enumeration from [] to [1, 2, CFR, CIF, CIP, CPT, DAP, DDP, DPU, EXW, FAS, FCA, FOB] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DeliveryTermsCodeListAgencyIDContentType}{0..1} in type {DeliveryTermsCodeType}new: @listAgencyID{DeliveryTermsCodeListAgencyIDContentType}{0..1} in type {DeliveryTermsCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode/@listID removed @listID {token}{0..1} in type {DeliveryTermsCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DeliveryTermsCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/FunctionCode added {DeliveryTermsFunctionCodeType}{0..1} in type {TradeDeliveryTermsType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/PartialDeliveryAllowedIndicator added {IndicatorType}{0..1} in type {TradeDeliveryTermsType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/RelevantTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/RelevantTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/RelevantTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/RelevantTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -232,17 +277,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -250,47 +298,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -299,17 +358,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -317,6 +379,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAssignedAccountantTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -329,43 +392,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -374,17 +447,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -392,64 +468,78 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -458,17 +548,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -476,47 +569,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerRequisitionerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -525,17 +629,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -543,47 +650,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -592,17 +710,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -610,6 +731,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -622,43 +744,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -667,17 +799,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -685,22 +820,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -714,43 +853,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -759,17 +908,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -777,22 +929,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/DemandForecastReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -806,43 +962,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -851,17 +1017,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -869,22 +1038,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/OrderResponseReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -898,43 +1071,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -943,17 +1126,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -961,65 +1147,79 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PriceListReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PricingBaseApplicableLogisticsLocation added {LogisticsLocationType}{0..1} in type {HeaderTradeAgreementType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -1028,17 +1228,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -1046,6 +1249,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -1058,43 +1262,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -1103,17 +1317,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -1121,22 +1338,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PromotionalDealReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -1150,43 +1371,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -1195,17 +1426,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -1213,22 +1447,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/PurchaseConditionsReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -1242,43 +1480,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -1287,17 +1535,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -1305,22 +1556,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -1334,43 +1589,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -1379,17 +1644,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -1397,64 +1665,78 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/RequisitionerReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -1463,17 +1745,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -1481,47 +1766,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -1530,17 +1826,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -1548,6 +1847,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerAssignedAccountantTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -1560,43 +1860,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -1605,17 +1915,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -1623,64 +1936,78 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -1689,17 +2016,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -1707,47 +2037,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -1756,17 +2097,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -1774,6 +2118,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -1786,43 +2131,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -1831,17 +2186,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -1849,22 +2207,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SupplyInstructionReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -1878,43 +2240,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -1923,17 +2295,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -1941,22 +2316,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -1968,12 +2347,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LatitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LongitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/SubordinateLocation added {SubordinateLocationType}{0..1} in type {LogisticsLocationType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeTypechanged enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{LocationFunctionCodeListAgencyIDContentType}{0..1} in type {LocationFunctionCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to LocationFunctionCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -1992,12 +2372,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LatitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LongitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/SubordinateLocation added {SubordinateLocationType}{0..1} in type {LogisticsLocationType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeTypechanged enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{LocationFunctionCodeListAgencyIDContentType}{0..1} in type {LocationFunctionCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to LocationFunctionCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -2016,12 +2397,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LatitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LongitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/SubordinateLocation added {SubordinateLocationType}{0..1} in type {LogisticsLocationType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeTypechanged enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{LocationFunctionCodeListAgencyIDContentType}{0..1} in type {LocationFunctionCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to LocationFunctionCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -2040,12 +2422,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LatitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LongitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/SubordinateLocation added {SubordinateLocationType}{0..1} in type {LogisticsLocationType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeTypechanged enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{LocationFunctionCodeListAgencyIDContentType}{0..1} in type {LocationFunctionCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to LocationFunctionCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -2066,43 +2449,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -2111,17 +2504,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2129,22 +2525,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/AdditionalReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -2158,43 +2558,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -2203,17 +2613,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2221,22 +2634,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ConsumptionReportReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -2250,43 +2667,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -2295,17 +2722,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2313,22 +2743,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -2342,43 +2776,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -2387,17 +2831,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2405,22 +2852,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -2434,43 +2885,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -2479,17 +2940,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2497,22 +2961,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PackingListReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -2524,12 +2992,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PreviousDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LatitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PreviousDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LongitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PreviousDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PreviousDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PreviousDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PreviousDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PreviousDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PreviousDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PreviousDeliverySupplyChainEvent/OccurrenceLogisticsLocation/SubordinateLocation added {SubordinateLocationType}{0..1} in type {LogisticsLocationType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PreviousDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PreviousDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeTypechanged enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PreviousDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PreviousDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{LocationFunctionCodeListAgencyIDContentType}{0..1} in type {LocationFunctionCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to LocationFunctionCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/PreviousDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -2550,43 +3019,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -2595,17 +3074,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2613,22 +3095,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -2645,43 +3131,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -2690,17 +3186,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2708,64 +3207,78 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -2774,17 +3287,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2792,48 +3308,59 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ChargeableWeightMeasure added {WeightUnitMeasureType}{0..1} in type {SupplyChainConsignmentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -2842,17 +3369,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2860,47 +3390,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -2909,17 +3450,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2927,47 +3471,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -2976,17 +3531,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2994,47 +3552,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -3043,17 +3612,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -3061,47 +3633,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -3110,17 +3693,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -3128,47 +3714,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -3177,17 +3774,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -3195,6 +3795,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -3203,43 +3804,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GrossVolumeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {VolumeUnitMeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GrossWeightMeasure/@unitCode modifying attribute: old: @unitCode{WeightUnitMeasureUnitCodeContentType}{0..1} in type {WeightUnitMeasureType}new: @unitCode{MeasurementUnitCommonCodeWeightContentType}{0..1} in type {WeightUnitMeasureType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:MeasurementUnitCommonCodeWeight:4 changed type from WeightUnitMeasureUnitCodeContentType to MeasurementUnitCommonCodeWeightContentTypechanged enumeration from [] to [KGM, TNE] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GrossWeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {WeightUnitMeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -3248,17 +3859,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -3266,6 +3880,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -3277,13 +3892,16 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/GrossWeightMeasure/@unitCode modifying attribute: old: @unitCode{WeightUnitMeasureUnitCodeContentType}{0..1} in type {WeightUnitMeasureType}new: @unitCode{MeasurementUnitCommonCodeWeightContentType}{0..1} in type {WeightUnitMeasureType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:MeasurementUnitCommonCodeWeight:4 changed type from WeightUnitMeasureUnitCodeContentType to MeasurementUnitCommonCodeWeightContentTypechanged enumeration from [] to [KGM, TNE] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/GrossWeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {WeightUnitMeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/Identification modifying element: old: {TextType}{0..1} in type {TransportCargoType}new: {TextType}{0..*} in type {TransportCargoType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/OperationalCategoryCode modifying element: old: {CargoOperationalCategoryCodeType}{0..1} in type {TransportCargoType}new: {CargoOperationalCategoryCodeType}{0..1} in type {TransportCargoType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/OperationalCategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{CargoOperationalCategoryCodeListAgencyIDContentType}{0..1} in type {CargoOperationalCategoryCodeType}new: @listAgencyID{CargoOperationalCategoryCodeListAgencyIDContentType}{0..1} in type {CargoOperationalCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/OperationalCategoryCode/@listID removed @listID {token}{0..1} in type {CargoOperationalCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/OperationalCategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {CargoOperationalCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/OperationalCategoryCode/@name removed @name {string}{0..1} in type {CargoOperationalCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/StatisticalClassificationCode modifying element: old: {CargoCommodityCategoryCodeType}{0..1} in type {TransportCargoType}new: {CargoCommodityCategoryCodeType}{0..1} in type {TransportCargoType}changed enumeration from [] to [ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/StatisticalClassificationCode/@listID removed @listID {token}{0..1} in type {CargoCommodityCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/StatisticalClassificationCode/@listVersionID removed @listVersionID {token}{0..1} in type {CargoCommodityCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/StatisticalClassificationCode/@name removed @name {string}{0..1} in type {CargoCommodityCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/TypeCode modifying element: old: {CargoCategoryCodeType}{0..1} in type {TransportCargoType}new: {CargoCategoryCodeType}{0..1} in type {TransportCargoType}changed enumeration from [] to [0, 1, 2, 3, 4, 5, 6, 7, 9] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{CargoCategoryCodeListAgencyIDContentType}{0..1} in type {CargoCategoryCodeType}new: @listAgencyID{CargoCategoryCodeListAgencyIDContentType}{0..1} in type {CargoCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/TypeCode/@listID removed @listID {token}{0..1} in type {CargoCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {CargoCategoryCodeType} @@ -3292,9 +3910,11 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NetWeightMeasure/@unitCode modifying attribute: old: @unitCode{token}{0..1} in type {MeasureType}new: @unitCode{MeasurementUnitCommonCodeWeightContentType}{0..1} in type {WeightUnitMeasureType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:codelist:standard:UNECE:MeasurementUnitCommonCodeWeight:4 changed type from token to MeasurementUnitCommonCodeWeightContentType changed maxLength from null to 3 changed minLength from null to 1changed enumeration from [] to [KGM, TNE] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NetWeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/PreviousAdministrativeReferencedDocument added {ReferencedDocumentType}{0..*} in type {SupplyChainConsignmentItemType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/TypeCode modifying element: old: {GoodsTypeCodeType}{0..1} in type {SupplyChainConsignmentItemType}new: {GoodsTypeCodeType}{0..1} in type {SupplyChainConsignmentItemType}changed enumeration from [] to [ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/TypeCode/@listID removed @listID {token}{0..1} in type {GoodsTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {GoodsTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/TypeCode/@name removed @name {string}{0..1} in type {GoodsTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/TypeExtensionCode modifying element: old: {GoodsTypeExtensionCodeType}{0..1} in type {SupplyChainConsignmentItemType}new: {GoodsTypeExtensionCodeType}{0..1} in type {SupplyChainConsignmentItemType}changed enumeration from [] to [ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/TypeExtensionCode/@listID removed @listID {token}{0..1} in type {GoodsTypeExtensionCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/TypeExtensionCode/@listVersionID removed @listVersionID {token}{0..1} in type {GoodsTypeExtensionCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/TypeExtensionCode/@name removed @name {string}{0..1} in type {GoodsTypeExtensionCodeType} @@ -3304,55 +3924,67 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/NetWeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/Cycle added {TextType}{0..1} in type {LogisticsTransportMovementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ID added {IDType}{0..1} in type {LogisticsTransportMovementType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ModeCode modifying element: old: {TransportModeCodeType}{0..1} in type {LogisticsTransportMovementType}new: {TransportModeCodeType}{0..1} in type {LogisticsTransportMovementType}changed enumeration from [] to [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ModeCode/@listAgencyID modifying attribute: old: @listAgencyID{TransportModeCodeListAgencyIDContentType}{0..1} in type {TransportModeCodeType}new: @listAgencyID{TransportModeCodeListAgencyIDContentType}{0..1} in type {TransportModeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ModeCode/@listID removed @listID {token}{0..1} in type {TransportModeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ModeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TransportModeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ModeCode/@name removed @name {string}{0..1} in type {TransportModeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/Service added {TextType}{0..1} in type {LogisticsTransportMovementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ServiceCode added {CodeType}{0..1} in type {LogisticsTransportMovementType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/StageCode modifying element: old: {TransportMovementStageCodeType}{0..1} in type {LogisticsTransportMovementType}new: {TransportMovementStageCodeType}{0..1} in type {LogisticsTransportMovementType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/StageCode/@listAgencyID modifying attribute: old: @listAgencyID{TransportMovementStageCodeListAgencyIDContentType}{0..1} in type {TransportMovementStageCodeType}new: @listAgencyID{TransportMovementStageCodeListAgencyIDContentType}{0..1} in type {TransportMovementStageCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/StageCode/@listID removed @listID {token}{0..1} in type {TransportMovementStageCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/StageCode/@listVersionID removed @listVersionID {token}{0..1} in type {TransportMovementStageCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/StageCode/@name removed @name {string}{0..1} in type {TransportMovementStageCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/StatusCode added {StatusCodeType}{0..1} in type {LogisticsTransportMovementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/Type added {TextType}{0..1} in type {LogisticsTransportMovementType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -3361,17 +3993,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -3379,10 +4014,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/TypeCode modifying element: old: {TransportMeansTypeCodeType}{0..1} in type {LogisticsTransportMeansType}new: {TransportMeansTypeCodeType}{0..1} in type {LogisticsTransportMeansType}changed enumeration from [] to [1501, 1502, 1503, 1504, 1505, 1506, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1521, 1522, 1523, 1524, 1525, 1531, 1532, 1533, 1534, 1541, 1542, 1543, 1551, 1552, 1553, 1591, 1592, 1593, 1594, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1711, 1712, 1721, 1723, 1724, 1725, 1726, 1727, 1728, 1729, 1751, 1752, 1753, 1761, 1762, 1763, 1764, 1765, 1766, 1781, 1782, 2201, 2202, 2203, 2301, 2302, 2303, 2304, 2305, 3100, 3101, 3102, 3103, 3104, 3105, 3106, 3107, 3108, 3109, 3110, 3111, 3112, 3113, 3114, 3115, 3116, 3117, 3118, 3119, 3120, 3121, 3122, 3123, 3124, 3125, 3126, 3127, 3128, 3129, 3130, 3131, 3132, 3133, 3134, 3135, 3136, 3137, 3138, 3201, 3301, 3302, 3303, 3304, 4000, 5000, 8021, 8022, 8023, 8161, 8162, 8163, 8441, 8442, 8443, 8444, 8445, 8446, 8447, 8448, 8451, 8452, 8453, 8454] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TransportMeansTypeCodeListAgencyIDContentType}{0..1} in type {TransportMeansTypeCodeType}new: @listAgencyID{TransportMeansTypeCodeListAgencyIDContentType}{0..1} in type {TransportMeansTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/TypeCode/@listID removed @listID {token}{0..1} in type {TransportMeansTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TransportMeansTypeCodeType} @@ -3396,43 +4033,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -3441,17 +4088,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -3459,22 +4109,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -3483,6 +4137,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/AffixedLogisticsSeal added {LogisticsSealType}{0..*} in type {LogisticsTransportEquipmentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/ApplicableNote added {NoteType}{0..*} in type {LogisticsTransportEquipmentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/CarrierAssignedBookingID added {IDType}{0..*} in type {LogisticsTransportEquipmentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/CategoryCode modifying element: old: {TransportEquipmentCategoryCodeType}{0..1} in type {LogisticsTransportEquipmentType}new: {TransportEquipmentCategoryCodeType}{0..1} in type {LogisticsTransportEquipmentType}changed enumeration from [] to [AA, AB, AD, AE, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AT, BB, BL, BPN, BPO, BPP, BPQ, BPR, BPS, BPT, BPU, BPV, BPW, BPX, BPY, BPZ, BR, BX, CH, CN, DPA, DPB, DPC, DPD, DPE, DPF, DPG, DPH, DPI, DPJ, DPK, DPL, DPM, DPN, DPO, EFP, EFQ, EFR, EFS, EFT, EFU, EFV, EFW, EFX, EFY, EFZ, EGA, EGB, EGC, EGD, EGE, EGF, EGG, EGH, EGI, EYP, FPN, FPR, IL, LAR, LU, MPA, PA, PBP, PFP, PL, PPA, PST, RF, RG, RGF, RO, RR, SPP, STR, SW, TE, TP, TS, TSU, UL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/CategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{TransportEquipmentCategoryCodeListAgencyIDContentType}{0..1} in type {TransportEquipmentCategoryCodeType}new: @listAgencyID{TransportEquipmentCategoryCodeListAgencyIDContentType}{0..1} in type {TransportEquipmentCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/CategoryCode/@listID removed @listID {token}{0..1} in type {TransportEquipmentCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/CategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {TransportEquipmentCategoryCodeType} @@ -3500,6 +4155,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LinearSpatialDimension/DiameterMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {LinearUnitMeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LinearSpatialDimension/HeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LinearSpatialDimension/LengthMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LinearSpatialDimension/TypeCode modifying element: old: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}new: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LinearSpatialDimension/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}new: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LinearSpatialDimension/TypeCode/@listID removed @listID {token}{0..1} in type {DimensionTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LinearSpatialDimension/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DimensionTypeCodeType} @@ -3510,47 +4166,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LoadingLengthMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {LinearUnitMeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/ReturnableIndicator added {IndicatorType}{0..1} in type {LogisticsTransportEquipmentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/SealedIndicator added {IndicatorType}{0..1} in type {LogisticsTransportEquipmentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/UsedCapacityCode modifying element: old: {TransportEquipmentFullnessCodeType}{0..1} in type {LogisticsTransportEquipmentType}new: {TransportEquipmentFullnessCodeType}{0..1} in type {LogisticsTransportEquipmentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/UsedCapacityCode/@listAgencyID modifying attribute: old: @listAgencyID{TransportEquipmentFullnessCodeListAgencyIDContentType}{0..1} in type {TransportEquipmentFullnessCodeType}new: @listAgencyID{TransportEquipmentFullnessCodeListAgencyIDContentType}{0..1} in type {TransportEquipmentFullnessCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/UsedCapacityCode/@listID removed @listID {token}{0..1} in type {TransportEquipmentFullnessCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/UsedCapacityCode/@listVersionID removed @listVersionID {token}{0..1} in type {TransportEquipmentFullnessCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/UsedCapacityCode/@name removed @name {string}{0..1} in type {TransportEquipmentFullnessCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -3559,17 +4226,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -3577,47 +4247,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -3626,17 +4307,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -3644,47 +4328,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -3693,17 +4388,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -3711,93 +4409,118 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculatedRate/@format removed @format {string}{0..1} in type {RateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculationSequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}new: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {TradeTaxType}new: {CurrencyCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}new: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@name removed @name {string}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/GrandTotalAmount added {AmountType}{0..*} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/PlaceApplicableTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/ServiceSupplyTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/ServiceSupplyTradeCountry/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/ServiceSupplyTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/ServiceSupplyTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TaxBasisAllowanceRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}new: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -3812,43 +4535,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -3857,17 +4590,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -3875,22 +4611,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -3904,43 +4644,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -3949,17 +4699,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -3967,22 +4720,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -3996,43 +4753,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -4041,17 +4808,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -4059,38 +4829,45 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/ConversionRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/SourceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/SourceCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/SourceCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/SourceCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/SourceCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/SourceUnitBasisNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/TargetCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/TargetCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/TargetCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/TargetCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/TargetCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange/TargetUnitBaseNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} @@ -4104,43 +4881,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -4149,17 +4936,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -4167,64 +4957,78 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -4233,17 +5037,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -4251,47 +5058,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -4300,17 +5118,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -4318,6 +5139,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -4330,43 +5152,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -4375,17 +5207,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -4393,74 +5228,91 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/LetterOfCreditReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayableSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayableSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayableSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayableSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayableSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayableSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayableSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayableSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayableSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayableSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayableSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayableSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayableSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -4469,17 +5321,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -4487,47 +5342,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -4536,17 +5402,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -4554,6 +5423,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -4566,43 +5436,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -4611,17 +5491,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -4629,38 +5512,45 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/ConversionRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/SourceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/SourceCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/SourceCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/SourceCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/SourceCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/SourceUnitBasisNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/TargetCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/TargetCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/TargetCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/TargetCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/TargetCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentApplicableTradeCurrencyExchange/TargetUnitBaseNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} @@ -4673,43 +5563,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -4718,17 +5618,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -4736,183 +5639,230 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ProFormaInvoiceReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SalesSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SalesSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SalesSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SalesSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SalesSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SalesSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SalesSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SalesSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SalesSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SalesSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SalesSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SalesSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SalesSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/FormattedReceivedDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CalculatedRate/@format removed @format {string}{0..1} in type {RateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CalculationSequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}new: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {TradeTaxType}new: {CurrencyCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/DueDateTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}new: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/DueDateTypeCode/@name removed @name {string}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/GrandTotalAmount added {AmountType}{0..*} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/ServiceSupplyTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/ServiceSupplyTradeCountry/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/ServiceSupplyTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/ServiceSupplyTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/TaxBasisAllowanceRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}new: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/InvoiceSpecifiedReferencedDocument added {ReferencedDocumentType}{0..*} in type {AdvancePaymentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -4921,17 +5871,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -4939,6 +5892,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -4952,43 +5906,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -4997,17 +5961,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -5015,22 +5982,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -5043,12 +6014,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/PhysicalGeographicalCoordinate/LatitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/PhysicalGeographicalCoordinate/LongitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/SubordinateLocation added {SubordinateLocationType}{0..1} in type {LogisticsLocationType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeTypechanged enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/TypeCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{LocationFunctionCodeListAgencyIDContentType}{0..1} in type {LocationFunctionCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to LocationFunctionCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/TypeCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -5064,12 +6036,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/PhysicalGeographicalCoordinate/LatitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/PhysicalGeographicalCoordinate/LongitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/SubordinateLocation added {SubordinateLocationType}{0..1} in type {LogisticsLocationType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeTypechanged enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/TypeCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{LocationFunctionCodeListAgencyIDContentType}{0..1} in type {LocationFunctionCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to LocationFunctionCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/TypeCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -5079,104 +6052,131 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/TypeCode/@name removed @name {string}{0..1} in type {CodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CalculatedRate/@format removed @format {string}{0..1} in type {RateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CalculationSequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}new: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {TradeTaxType}new: {CurrencyCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}new: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode/@name removed @name {string}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/GrandTotalAmount added {AmountType}{0..*} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/PlaceApplicableTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/ServiceSupplyTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/ServiceSupplyTradeCountry/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/ServiceSupplyTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/ServiceSupplyTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TaxBasisAllowanceRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}new: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/CalculationBasisCode modifying element: old: {LogisticsChargeCalculationBasisCodeType}{0..1} in type {LogisticsServiceChargeType}new: {LogisticsChargeCalculationBasisCodeType}{0..1} in type {LogisticsServiceChargeType}changed enumeration from [] to [ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/CalculationBasisCode/@listID removed @listID {token}{0..1} in type {LogisticsChargeCalculationBasisCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/CalculationBasisCode/@listVersionID removed @listVersionID {token}{0..1} in type {LogisticsChargeCalculationBasisCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/CalculationBasisCode/@name removed @name {string}{0..1} in type {LogisticsChargeCalculationBasisCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/ID modifying element: old: {FreightChargeTypeIDType}{0..1} in type {LogisticsServiceChargeType}new: {FreightChargeTypeIDType}{0..1} in type {LogisticsServiceChargeType}changed enumeration from [] to [100000, 100999, 101000, 101002, 101003, 101004, 101005, 101006, 101007, 101008, 101009, 101010, 101011, 101012, 101013, 101014, 101015, 101016, 101017, 101018, 101019, 101020, 101021, 101021, 101021, 101021, 101021, 101021, 101021, 101021, 101022, 101024, 101027, 101028, 101029, 101031, 101033, 101034, 101035, 101036, 101037, 101038, 101039, 101040, 101041, 101042, 101043, 101044, 101045, 101046, 101047, 101048, 101049, 101050, 101051, 101052, 101053, 101054, 101056, 101057, 101058, 101059, 101060, 101061, 102000, 102002, 102003, 102004, 102005, 102006, 102011, 102012, 102013, 102014, 102015, 102016, 102017, 102018, 102019, 102020, 102021, 102022, 102023, 102024, 102025, 102026, 102027, 102028, 102029, 102030, 102041, 102042, 102043, 102043, 102044, 102045, 102046, 102047, 102049, 102050, 102051, 102052, 102070, 102071, 102072, 102073, 102074, 102075, 102076, 102077, 102078, 102079, 102080, 102081, 102082, 102083, 102084, 102085, 102086, 102087, 102088, 103000, 103001, 103002, 103003, 103004, 103005, 103006, 103007, 103008, 103009, 103010, 103011, 103012, 103013, 103015, 103016, 103017, 103018, 103019, 104000, 104002, 104003, 104004, 104004, 104005, 104006, 104007, 104008, 104009, 104010, 104011, 104012, 104013, 104014, 104015, 104016, 104024, 104024, 104024, 104025, 104027, 104028, 104029, 104030, 104031, 104032, 104036, 104037, 104038, 104039, 104041, 104042, 104043, 104044, 104045, 104046, 104052, 104052, 104052, 104052, 104055, 104056, 104059, 104060, 104063, 104064, 104068, 104069, 104070, 104071, 104072, 104073, 104074, 104075, 104076, 104077, 104078, 104079, 104080, 104081, 104082, 104083, 104084, 104085, 104102, 104102, 104104, 104106, 104107, 104108, 104109, 104110, 104111, 104112, 104113, 104114, 104115, 104116, 104118, 104119, 104120, 104121, 104124, 104125, 104125, 104125, 104125, 104127, 104129, 104130, 104131, 104132, 104134, 104135, 104135, 104135, 104135, 104136, 104137, 104137, 104137, 104138, 104138, 104139, 104139, 104139, 104139, 104140, 104141, 104142, 104144, 104144, 104144, 104145, 104146, 104148, 104149, 104150, 104151, 104152, 104153, 104154, 104155, 104156, 104157, 104158, 104159, 104159, 104160, 104161, 104162, 104163, 104164, 104165, 104166, 104167, 104168, 104169, 104170, 104172, 104173, 104175, 104176, 104177, 104178, 104179, 104180, 104181, 104182, 104183, 104185, 104186, 104188, 104189, 104190, 104191, 104192, 104193, 104194, 104195, 104196, 104197, 104198, 104199, 104200, 104201, 104202, 104203, 104204, 104205, 104206, 104207, 104208, 104209, 104210, 104211, 104212, 104213, 105000, 105001, 105002, 105003, 105004, 105005, 105006, 105007, 105009, 105010, 105012, 105013, 105014, 105015, 105016, 105017, 105018, 105020, 106000, 106001, 106002, 106003, 106004, 106005, 106006, 106007, 106008, 106009, 106010, 106011, 106012, 106013, 106014, 106015, 106016, 106018, 107000, 107001, 107001, 107002, 108000, 108001, 108002, 108003, 108004, 108005, 108006, 109000, 109001, 110000, 110001, 110002, 110003, 110004, 110005, 110006, 110007, 110008, 110009, 110010, 110011, 200000, 200999, 202000, 202001, 202002, 202003, 202004, 202005, 202006, 202007, 202008, 202009, 202010, 202011, 202012, 202013, 203000, 203001, 203002, 203003, 203004, 203005, 203006, 203007, 203008, 203009, 203010, 203011, 203012, 203013, 203014, 203015, 203016, 203017, 203018, 203019, 203020, 203021, 203022, 203023, 203024, 203025, 203026, 203027, 203028, 203029, 203030, 203031, 203032, 203033, 203034, 203035, 203036, 203037, 203038, 203039, 203040, 203041, 203042, 203043, 203044, 203045, 203046, 203047, 203048, 203049, 203050, 203051, 203052, 203053, 203054, 203055, 203056, 203057, 203058, 203059, 203060, 203061, 203062, 203063, 203064, 203065, 203066, 203067, 203068, 203069, 203070, 203071, 203072, 203073, 203074, 203075, 203076, 203077, 203078, 203079, 203080, 203081, 203082, 203083, 203084, 203085, 203086, 203087, 203088, 203089, 203090, 203091, 203092, 203093, 203094, 203095, 203096, 203097, 203098, 203099, 203100, 203102, 203104, 203105, 203106, 203107, 203108, 203109, 203110, 203111, 203112, 203113, 203114, 203115, 203116, 203117, 203118, 203119, 203120, 203121, 203122, 203123, 203124, 203125, 203126, 203127, 203130, 203130, 203131, 203133, 203134, 203134, 203134, 203135, 203136, 203137, 203138, 203139, 203140, 203141, 203142, 203143, 203144, 203145, 203146, 203147, 203148, 203149, 203150, 203151, 203152, 203153, 203154, 203155, 203156, 203157, 203158, 203159, 203160, 203161, 203162, 203163, 203164, 203165, 203166, 203167, 203168, 203169, 203170, 203171, 203172, 203173, 203174, 203175, 203176, 203177, 203178, 203179, 203180, 203181, 203182, 203183, 203184, 203185, 203186, 203187, 203188, 203189, 203190, 203191, 203192, 203193, 203194, 203195, 203196, 203197, 203198, 203199, 203200, 203201, 203202, 203203, 203204, 203205, 204000, 204001, 204002, 204003, 204004, 204005, 204006, 204007, 204008, 204009, 204010, 204011, 204012, 204013, 204014, 204015, 204016, 204017, 204018, 204019, 204020, 204021, 204022, 204023, 204024, 204025, 204026, 204027, 204028, 204029, 204030, 204031, 204032, 204033, 204034, 204035, 204036, 204037, 204038, 204039, 204040, 204041, 204042, 204043, 204044, 204045, 204046, 204047, 204048, 204049, 204050, 204051, 204052, 204053, 204054, 204055, 204056, 204057, 204058, 204059, 204060, 204061, 204062, 204063, 204064, 204065, 204066, 204067, 204068, 204069, 204070, 204071, 204072, 204073, 204074, 204075, 204076, 204077, 204078, 204079, 204080, 204081, 204082, 204083, 204084, 204085, 204086, 204087, 204088, 204089, 204090, 204091, 204092, 204093, 204094, 204095, 204096, 204097, 204098, 204099, 204100, 204101, 204102, 204103, 204104, 204105, 204106, 204107, 204108, 204109, 204110, 204111, 204112, 204113, 204114, 204115, 204116, 204117, 204118, 204119, 204120, 204121, 204122, 204123, 204124, 204125, 204126, 204127, 204128, 204129, 204130, 204131, 204132, 204133, 204134, 204135, 204136, 204137, 204138, 204139, 204140, 204141, 204142, 204143, 204144, 204145, 204146, 204148, 204150, 204151, 204152, 204153, 204154, 204155, 204156, 204157, 204158, 204159, 204160, 204161, 204162, 204163, 204164, 204165, 204166, 204167, 204168, 204169, 204170, 204171, 204172, 204173, 204175, 204176, 204177, 204178, 204179, 204180, 204181, 204182, 204183, 204184, 204185, 204186, 204187, 204188, 204189, 204190, 204191, 204192, 204193, 204194, 204195, 204196, 204197, 204198, 204199, 204200, 204201, 204202, 204203, 204204, 204205, 204206, 204207, 204208, 204209, 204210, 204211, 204212, 204213, 204214, 204215, 204216, 204217, 204218, 204219, 205000, 205001, 205002, 205003, 205004, 205005, 205006, 205007, 205008, 205009, 205010, 205011, 205012, 205013, 205014, 205015, 205016, 205017, 205018, 205019, 205020, 205021, 205022, 205023, 205025, 205027, 205028, 205029, 205030, 205031, 205032, 205033, 205034, 205035, 205036, 205037, 205038, 205039, 205040, 205041, 205042, 205043, 205044, 205045, 205046, 205047, 205048, 205049, 205050, 205051, 205052, 205053, 205054, 205055, 205056, 205057, 205058, 205059, 205060, 205061, 205062, 206000, 206001, 206002, 206003, 206004, 206005, 206006, 206007, 206008, 206009, 206010, 206011, 206012, 206013, 206014, 206015, 206016, 206017, 206018, 206019, 206020, 206021, 206023, 206025, 206026, 206027, 206028, 206029, 206030, 206031, 206032, 206033, 206034, 206035, 206036, 206037, 206038, 206039, 206040, 206041, 206042, 206043, 206044, 206045, 206046, 206047, 206048, 206049, 206050, 206051, 206052, 206053, 206054, 206055, 206056, 206057, 206058, 206059, 206060, 206061, 206062, 206063, 206064, 206065, 206066, 207000, 207001, 207002, 207003, 207004, 207005, 207006, 207007, 207008, 207009, 207010, 207011, 207012, 207013, 207014, 207015, 207016, 207017, 207018, 207019, 207020, 207022, 207023, 207024, 207025, 207026, 207027, 207028, 207029, 207030, 207032, 207033, 207034, 207035, 207036, 207037, 207038, 207039, 207040, 207041, 207042, 207043, 207044, 207045, 207046, 207047, 207048, 207049, 207050, 207051, 207052, 207053, 207054, 207055, 207056, 207057, 207058, 207059, 207060, 207061, 207062, 208000, 208001, 208002, 208003, 208004, 208005, 208006, 208007, 208008, 208009, 208010, 208011, 208012, 208013, 208014, 208015, 208016, 208017, 208018, 208019, 208020, 208021, 208022, 208023, 208024, 208025, 208026, 208027, 208028, 208030, 208030, 208030, 208030, 208031, 208032, 208034, 208035, 208036, 208037, 208038, 208039, 208040, 208041, 208042, 208043, 208044, 208045, 208046, 208047, 208048, 208049, 208050, 208051, 209000, 209001, 209002, 209003, 209004, 209005, 209006, 209007, 209008, 209009, 209010, 209011, 209012, 209013, 209014, 209015, 209032, 209033, 209034, 209058, 209060, 209061, 209062, 209063, 209064, 209065, 209066, 209067, 209068, 209069, 209070, 209071, 209072, 209073, 209074, 210000, 210001, 210002, 210003, 210004, 210005, 210006, 210007, 210008, 210009, 210010, 210011, 210012, 210013, 210014, 210015, 210016, 210017, 210018, 210019, 210020, 210021, 210022, 210023, 210024, 210025, 210026, 210027, 210028, 210029, 210030, 210031, 210032, 210033, 210034, 210035, 210036, 210037, 210038, 210039, 210040, 210041, 210041, 210041, 210041, 210041, 210042, 210043, 210044, 210045, 210046, 210047, 210048, 210049, 210050, 210051, 210052, 210053, 210054, 210055, 210056, 210057, 210058, 210059, 210060, 210061, 210062, 211000, 211001, 211002, 211003, 211004, 211005, 211006, 211007, 211008, 211009, 211010, 211011, 211012, 211013, 211014, 211015, 211016, 211017, 211018, 211019, 211020, 211021, 211022, 211023, 211024, 211025, 211026, 211027, 211028, 211029, 211030, 211031, 211032, 211033, 211034, 211035, 211036, 211037, 211038, 211039, 211040, 211041, 211042, 211043, 211044, 212000, 212001, 212002, 212003, 212004, 213000, 213001, 213002, 213003, 213004, 213005, 214000, 214001, 214002, 214003, 214004, 214004, 214004, 215000, 215001, 215002, 215002, 215004, 215005, 215005, 215005, 215005, 215006, 215007, 215008, 215009, 215010, 215011, 216000, 216001, 216002, 216003, 216004, 216005, 216006, 216007, 216008, 216009, 216010, 216011, 216012, 216013, 216014, 216015, 216016, 216016, 216016, 216016, 216017, 216019, 216020, 216021, 216022, 216023, 216024, 216025, 216026, 216027, 216028, 216029, 216030, 216031, 216031, 216031, 216032, 216033, 216034, 216035, 216036, 216037, 216038, 216039, 216040, 216041, 216042, 216044, 216045, 216046, 216047, 216048, 216049, 216050, 216051, 216052, 216053, 216054, 216055, 216056, 216057, 216058, 216059, 216060, 216061, 216062, 216063, 216064, 216065, 216066, 216067, 216068, 216069, 216070, 216071, 216072, 216073, 216074, 216075, 216076, 216077, 216078, 216079, 216080, 216081, 216082, 216083, 216084, 216085, 216086, 216087, 216088, 216089, 216090, 216091, 216092, 216093, 216094, 300000, 300999, 301000, 301001, 301001, 301001, 301002, 301002, 301002, 301002, 301003, 301004, 301005, 301006, 301007, 301008, 301009, 301010, 301011, 301011, 301011, 301011, 301012, 301013, 301013, 301014, 301015, 301016, 301017, 301018, 301019, 301020, 301021, 301022, 301023, 301024, 301025, 301026, 301027, 301028, 301029, 301030, 301031, 301031, 301032, 301033, 301034, 301035, 301036, 301037, 301038, 301039, 301040, 301041, 301042, 301043, 301044, 301045, 301046, 301047, 301048, 301048, 301048, 301048, 301048, 301048, 301048, 301049, 301050, 301051, 301052, 301053, 301054, 301055, 301056, 301057, 301058, 301059, 301060, 301061, 301062, 301063, 301064, 301065, 301066, 301067, 301068, 301069, 301070, 301072, 301073, 301074, 301075, 301076, 301077, 301078, 302000, 302001, 302002, 302003, 302004, 302004, 302004, 302004, 302004, 302005, 302006, 302007, 302008, 302009, 302010, 302011, 302012, 302013, 302014, 302016, 302017, 302018, 400000, 400999, 401000, 401001, 401003, 401004, 401005, 401006, 401009, 401015, 401015, 401016, 401017, 401018, 402000, 402001, 402002, 402003, 402004, 402005, 402006, 402007, 500000, 500999, 501000, 501001, 501002, 501003, 501004, 501005, 501005, 501005, 501005, 501006, 501006, 501006, 501006, 501007, 501007, 501008, 501009, 501009, 501009, 501009, 502000, 502001, 502002, 502002, 502002, 502003, 502004, 502005, 502006, 600000, 600018, 600926, 600999, 601000, 601001, 601002, 601003, 601003, 601003, 601003, 601004, 601005, 601006, 601007, 601008, 602000, 602001, 602002, 602003, 603000, 603001, 603002, 603003, 603004, 603005, 603006, 603007, 603008, 603009, 603010, 604000, 604001, 604001, 604001, 604002, 605000, 606000, 606003, 606003, 606004, 606005, 606006, 606007, 606008, 606009, 607000, 607001, 607001, 607001, 608000, 608001, 608001, 608001, 608001, 608002, 608003, 608003, 608003, 608003, 608003, 609000, 609001, 609002, 609003, 609004, 609005, 609006, 609007, 609008, 609008, 609008, 609008, 609008, 609009, 609010, 609011, 609012, 609013, 609015, 609016, 609017, 609018, 609019, 609020, 609022, 609023, 609024, 609025, 609026, 609027, 609028, 609029, 609030, 609031, 609031, 609032, 609032, 609033, 609034, 609035, 609036, 609037, 609038, 609039, 609040, 609041, 609041, 609042, 609043, 609043, 609044, 609045, 609046, 609047, 609049, 609050, 609051, 609052, 609053, 609054, 609055, 609056, 609056, 609056, 609057, 609058, 609059, 609060, 609061, 609062, 609063, 609064, 609065, 609067, 609068, 609069, 609070, 609071, 609072, 609073, 609074, 609075, 609077, 609078, 609079, 609080, 609081, 609082, 609083, 609084, 609085, 609087, 609088, 609089, 609090, 609091, 609092, 609093, 609094, 609095, 609096, 609097, 609098, 609099, 609100, 609101, 609102, 609103, 609104, 609105, 609106, 609107, 609111, 609112, 609113, 609115, 609116, 609117, 609118, 609119, 609120, 609122, 609123, 609124, 609125, 609126, 609128, 609129, 609130, 609131, 609132, 609133, 609134, 609135, 609136, 609137, 609138, 609139, 609140, 609141, 609142, 609143, 609144, 609145] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{FreightChargeTypeIDSchemeAgencyIDContentType}{0..1} in type {FreightChargeTypeIDType}new: @schemeAgencyID{FreightChargeTypeIDSchemeAgencyIDContentType}{0..1} in type {FreightChargeTypeIDType}changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/ID/@schemeID removed @schemeID {token}{0..1} in type {FreightChargeTypeIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {FreightChargeTypeIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PayingPartyRoleCode modifying element: old: {ChargePayingPartyRoleCodeType}{0..1} in type {LogisticsServiceChargeType}new: {ChargePayingPartyRoleCodeType}{0..1} in type {LogisticsServiceChargeType}changed enumeration from [] to [AB, AE, AF, AH, AQ, AR, AT, AU, CA, CG, CN, CPD, CX, CZ, DGB, EX, FW, GS, IM, IV, PE] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PayingPartyRoleCode/@listAgencyID modifying attribute: old: @listAgencyID{ChargePayingPartyRoleCodeListAgencyIDContentType}{0..1} in type {ChargePayingPartyRoleCodeType}new: @listAgencyID{ChargePayingPartyRoleCodeListAgencyIDContentType}{0..1} in type {ChargePayingPartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PayingPartyRoleCode/@listID removed @listID {token}{0..1} in type {ChargePayingPartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PayingPartyRoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {ChargePayingPartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PayingPartyRoleCode/@name removed @name {string}{0..1} in type {ChargePayingPartyRoleCodeType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentArrangementCode modifying element: old: {CodeType}{0..1} in type {LogisticsServiceChargeType}new: {TransportServicePaymentArrangementCodeType}{0..1} in type {LogisticsServiceChargeType} changed type from CodeType to TransportServicePaymentArrangementCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentArrangementCode modifying element: old: {CodeType}{0..1} in type {LogisticsServiceChargeType}new: {TransportServicePaymentArrangementCodeType}{0..1} in type {LogisticsServiceChargeType} changed type from CodeType to TransportServicePaymentArrangementCodeTypechanged enumeration from [] to [A, B, C, P] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentArrangementCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentArrangementCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{TransportServicePaymentArrangementCodeListAgencyIDContentType}{0..1} in type {TransportServicePaymentArrangementCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to TransportServicePaymentArrangementCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentArrangementCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -5192,12 +6192,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/PhysicalGeographicalCoordinate/LatitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/PhysicalGeographicalCoordinate/LongitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/SubordinateLocation added {SubordinateLocationType}{0..1} in type {LogisticsLocationType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeTypechanged enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/TypeCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{LocationFunctionCodeListAgencyIDContentType}{0..1} in type {LocationFunctionCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to LocationFunctionCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/TypeCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -5207,6 +6208,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/TypeCode/@name removed @name {string}{0..1} in type {CodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/TariffClassCode modifying element: old: {FreightChargeTariffClassCodeType}{0..1} in type {LogisticsServiceChargeType}new: {FreightChargeTariffClassCodeType}{0..1} in type {LogisticsServiceChargeType}changed enumeration from [] to [A, B, C, D, E, F, G, H, K, M, N, Q, R, S] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/TariffClassCode/@listAgencyID modifying attribute: old: @listAgencyID{FreightChargeTariffClassCodeListAgencyIDContentType}{0..1} in type {FreightChargeTariffClassCodeType}new: @listAgencyID{FreightChargeTariffClassCodeListAgencyIDContentType}{0..1} in type {FreightChargeTariffClassCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/TariffClassCode/@listID removed @listID {token}{0..1} in type {FreightChargeTariffClassCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/TariffClassCode/@listVersionID removed @listVersionID {token}{0..1} in type {FreightChargeTariffClassCodeType} @@ -5219,43 +6221,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -5264,17 +6276,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -5282,130 +6297,162 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/ConversionRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceUnitBasisNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetUnitBaseNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate/@format removed @format {string}{0..1} in type {RateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}new: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {TradeTaxType}new: {CurrencyCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}new: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@name removed @name {string}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/GrandTotalAmount added {AmountType}{0..*} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxBasisAllowanceRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}new: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listAgencyID modifying attribute: old: @listAgencyID{AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType}new: @listAgencyID{AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listVersionID removed @listVersionID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/TypeCode modifying element: old: {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/TypeCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeIdentificationCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeIdentificationCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AllowanceChargeIdentificationCodeType} @@ -5413,49 +6460,61 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/ApplicableTradePaymentPenaltyTerms/BasisPeriodMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/BillStartDateTime added {DateTimeType}{0..1} in type {TradePaymentTermsType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/DueDateTime added {FormattedDateTimeType}{0..1} in type {TradePaymentTermsType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/FromEventCode modifying element: old: {PaymentTermsEventTimeReferenceCodeType}{0..1} in type {TradePaymentTermsType}new: {PaymentTermsEventTimeReferenceCodeType}{0..1} in type {TradePaymentTermsType}changed enumeration from [] to [5, 24, 29, 45, 71] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/FromEventCode/@listAgencyID modifying attribute: old: @listAgencyID{PaymentTermsEventTimeReferenceCodeListAgencyIDContentType}{0..1} in type {PaymentTermsEventTimeReferenceCodeType}new: @listAgencyID{PaymentTermsEventTimeReferenceCodeListAgencyIDContentType}{0..1} in type {PaymentTermsEventTimeReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/FromEventCode/@listID removed @listID {token}{0..1} in type {PaymentTermsEventTimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/FromEventCode/@listVersionID removed @listVersionID {token}{0..1} in type {PaymentTermsEventTimeReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/ID modifying element: old: {PaymentTermsIDType}{0..1} in type {TradePaymentTermsType}new: {PaymentTermsIDType}{0..1} in type {TradePaymentTermsType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{PaymentTermsIDSchemeAgencyIDContentType}{0..1} in type {PaymentTermsIDType}new: @schemeAgencyID{PaymentTermsIDSchemeAgencyIDContentType}{0..1} in type {PaymentTermsIDType}changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/ID/@schemeID removed @schemeID {token}{0..1} in type {PaymentTermsIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {PaymentTermsIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -5464,17 +6523,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -5482,11 +6544,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/SettlementPeriodMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/TypeCode modifying element: old: {PaymentTermsTypeCodeType}{0..1} in type {TradePaymentTermsType}new: {PaymentTermsTypeCodeType}{0..1} in type {TradePaymentTermsType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{PaymentTermsTypeCodeListAgencyIDContentType}{0..1} in type {PaymentTermsTypeCodeType}new: @listAgencyID{PaymentTermsTypeCodeListAgencyIDContentType}{0..1} in type {PaymentTermsTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/TypeCode/@listID removed @listID {token}{0..1} in type {PaymentTermsTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {PaymentTermsTypeCodeType} @@ -5503,100 +6567,127 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/ApplicableTradeSettlementFinancialCard/ValidFromDateTime/DateTimeString modifying element: old: {DateTimeType}{0..1} in type {DateTimeType}new: {DateOnlyFormattedDateTimeType}{1..1} in type {DateOnlyFormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:UnqualifiedDataType:100 to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed cardinality from 0..1 to 1..1 changed compositor from CHOICE to SEQUENCE /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/ApplicableTradeSettlementFinancialCard/ValidFromDateTime/DateTimeString/@format modifying attribute: old: @format{string}{0..1} in type {DateTimeType}new: @format{DateOnlyFormatCodeContentType}{0..1} in type {DateOnlyFormattedDateTimeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:codelist:standard:UNECE:DateOnlyFormatCode:D21B changed type from string to DateOnlyFormatCodeContentTypechanged enumeration from [] to [2, 3, 4, 101, 102, 105, 106, 107, 110, 609] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/ApplicableTradeSettlementFinancialCard/VerificationNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/GuaranteeMethodCode modifying element: old: {PaymentGuaranteeMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType}new: {PaymentGuaranteeMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType}changed enumeration from [] to [1, 10, 11, 12, 13, 14, 20, 21, 23, 24, 45, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/GuaranteeMethodCode/@listAgencyID modifying attribute: old: @listAgencyID{PaymentGuaranteeMeansCodeListAgencyIDContentType}{0..1} in type {PaymentGuaranteeMeansCodeType}new: @listAgencyID{PaymentGuaranteeMeansCodeListAgencyIDContentType}{0..1} in type {PaymentGuaranteeMeansCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/GuaranteeMethodCode/@listID removed @listID {token}{0..1} in type {PaymentGuaranteeMeansCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/GuaranteeMethodCode/@listVersionID removed @listVersionID {token}{0..1} in type {PaymentGuaranteeMeansCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PayeePartyCreditorFinancialAccount modifying element: old: {CreditorFinancialAccountType}{0..1} in type {TradeSettlementPaymentMeansType}new: {CreditorFinancialAccountType}{0..*} in type {TradeSettlementPaymentMeansType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PaymentChannelCode modifying element: old: {PaymentMeansChannelCodeType}{0..1} in type {TradeSettlementPaymentMeansType}new: {PaymentMeansChannelCodeType}{0..1} in type {TradeSettlementPaymentMeansType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PaymentChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{PaymentMeansChannelCodeListAgencyIDContentType}{0..1} in type {PaymentMeansChannelCodeType}new: @listAgencyID{PaymentMeansChannelCodeListAgencyIDContentType}{0..1} in type {PaymentMeansChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PaymentChannelCode/@listID removed @listID {token}{0..1} in type {PaymentMeansChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PaymentChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {PaymentMeansChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PaymentChannelCode/@name removed @name {string}{0..1} in type {PaymentMeansChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode modifying element: old: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType}new: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96, 97, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{PaymentMeansCodeListAgencyIDContentType}{0..1} in type {PaymentMeansCodeType}new: @listAgencyID{PaymentMeansCodeListAgencyIDContentType}{0..1} in type {PaymentMeansCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode/@listID removed @listID {token}{0..1} in type {PaymentMeansCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {PaymentMeansCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/CalculatedRate/@format removed @format {string}{0..1} in type {RateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/CalculationSequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/CategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}new: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/CategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/CurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {TradeTaxType}new: {CurrencyCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/CurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/CurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/CurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/CurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/DueDateTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}new: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/DueDateTypeCode/@name removed @name {string}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/GrandTotalAmount added {AmountType}{0..*} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/PlaceApplicableTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/ServiceSupplyTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/ServiceSupplyTradeCountry/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/ServiceSupplyTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/ServiceSupplyTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/TaxBasisAllowanceRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}new: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -5609,43 +6700,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -5654,17 +6755,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -5672,79 +6776,96 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/ConversionRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/SourceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/SourceCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/SourceCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/SourceCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/SourceCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/SourceUnitBasisNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/TargetCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/TargetCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/TargetCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/TargetCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/TargetCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/TargetUnitBaseNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -5753,17 +6874,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -5771,6 +6895,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -5779,6 +6904,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/AssociatedDocumentLineDocument modifying element: old: {DocumentLineDocumentType}{1..1} in type {SupplyChainTradeLineItemType}new: {DocumentLineDocumentType}{0..1} in type {SupplyChainTradeLineItemType} changed cardinality from 1..1 to 0..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/AssociatedDocumentLineDocument/CategoryCode added {CodeType}{0..1} in type {DocumentLineDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/AssociatedDocumentLineDocument/IncludedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/AssociatedDocumentLineDocument/LineStatusCode modifying element: old: {LineStatusCodeType}{0..1} in type {DocumentLineDocumentType}new: {LineStatusCodeType}{0..1} in type {DocumentLineDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/AssociatedDocumentLineDocument/LineStatusCode/@listAgencyID modifying attribute: old: @listAgencyID{LineStatusCodeListAgencyIDContentType}{0..1} in type {LineStatusCodeType}new: @listAgencyID{LineStatusCodeListAgencyIDContentType}{0..1} in type {LineStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/AssociatedDocumentLineDocument/LineStatusCode/@listID removed @listID {token}{0..1} in type {LineStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/AssociatedDocumentLineDocument/LineStatusCode/@listURI removed @listURI {anyURI}{0..1} in type {LineStatusCodeType} @@ -5794,43 +6920,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -5839,17 +6975,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -5857,22 +6996,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AdditionalReferenceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -5887,43 +7030,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ApplicableProductCharacteristic/ValueSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/AreaDensityMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BatchID added {IDType}{0..*} in type {TradeProductType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -5932,17 +7085,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -5950,6 +7106,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/BrandOwnerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -5963,43 +7120,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -6008,17 +7175,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -6026,22 +7196,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/CertificationEvidenceReferenceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -6077,12 +7251,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LatitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LongitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/SubordinateLocation added {SubordinateLocationType}{0..1} in type {LogisticsLocationType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeTypechanged enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{LocationFunctionCodeListAgencyIDContentType}{0..1} in type {LocationFunctionCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to LocationFunctionCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -6101,12 +7276,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LatitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LongitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/SubordinateLocation added {SubordinateLocationType}{0..1} in type {LogisticsLocationType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeTypechanged enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{LocationFunctionCodeListAgencyIDContentType}{0..1} in type {LocationFunctionCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to LocationFunctionCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -6129,43 +7305,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -6174,17 +7360,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -6192,64 +7381,78 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/InspectionReferenceReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -6258,17 +7461,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -6276,6 +7482,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LegalRightsOwnerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -6285,6 +7492,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LinearSpatialDimension/DiameterMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {LinearUnitMeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LinearSpatialDimension/HeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LinearSpatialDimension/LengthMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LinearSpatialDimension/TypeCode modifying element: old: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}new: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LinearSpatialDimension/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}new: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LinearSpatialDimension/TypeCode/@listID removed @listID {token}{0..1} in type {DimensionTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/LinearSpatialDimension/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DimensionTypeCodeType} @@ -6299,43 +7507,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -6344,17 +7562,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -6362,64 +7583,78 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MSDSReferenceReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -6428,17 +7663,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -6446,6 +7684,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ManufacturerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -6454,6 +7693,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MaximumLinearSpatialDimension/DiameterMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {LinearUnitMeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MaximumLinearSpatialDimension/HeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MaximumLinearSpatialDimension/LengthMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MaximumLinearSpatialDimension/TypeCode modifying element: old: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}new: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MaximumLinearSpatialDimension/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}new: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MaximumLinearSpatialDimension/TypeCode/@listID removed @listID {token}{0..1} in type {DimensionTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MaximumLinearSpatialDimension/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DimensionTypeCodeType} @@ -6464,6 +7704,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MinimumLinearSpatialDimension/DiameterMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {LinearUnitMeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MinimumLinearSpatialDimension/HeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MinimumLinearSpatialDimension/LengthMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MinimumLinearSpatialDimension/TypeCode modifying element: old: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}new: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MinimumLinearSpatialDimension/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}new: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MinimumLinearSpatialDimension/TypeCode/@listID removed @listID {token}{0..1} in type {DimensionTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/MinimumLinearSpatialDimension/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DimensionTypeCodeType} @@ -6474,6 +7715,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/ModelName added {TextType}{0..1} in type {TradeProductType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/NetVolumeMeasure added {MeasureType}{0..1} in type {TradeProductType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/NetWeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/OriginTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/OriginTradeCountry/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/OriginTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/ApplicableTradeProduct/OriginTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -6495,43 +7737,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -6540,17 +7792,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -6558,22 +7813,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/AdditionalReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -6587,43 +7846,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -6632,17 +7901,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -6650,22 +7922,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -6680,43 +7956,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -6725,17 +8011,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -6743,130 +8032,162 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/ConversionRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceUnitBasisNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetUnitBaseNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate/@format removed @format {string}{0..1} in type {RateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}new: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {TradeTaxType}new: {CurrencyCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}new: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@name removed @name {string}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/GrandTotalAmount added {AmountType}{0..*} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxBasisAllowanceRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}new: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listAgencyID modifying attribute: old: @listAgencyID{AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType}new: @listAgencyID{AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listVersionID removed @listVersionID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode modifying element: old: {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeIdentificationCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeIdentificationCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AllowanceChargeIdentificationCodeType} @@ -6878,43 +8199,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -6923,17 +8254,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -6941,120 +8275,150 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/BasisDateTime added {DateTimeType}{0..1} in type {TradePriceType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/DeliveryTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/DeliveryTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/DeliveryTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/DeliveryTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CalculatedRate/@format removed @format {string}{0..1} in type {RateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CalculationSequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}new: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {TradeTaxType}new: {CurrencyCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}new: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@name removed @name {string}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/GrandTotalAmount added {AmountType}{0..*} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/ServiceSupplyTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/ServiceSupplyTradeCountry/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/ServiceSupplyTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/ServiceSupplyTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TaxBasisAllowanceRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}new: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/OrderUnitConversionFactorNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/Type added {TextType}{0..*} in type {TradePriceType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/TypeCode modifying element: old: {PriceTypeCodeType}{0..1} in type {TradePriceType}new: {PriceTypeCodeType}{0..1} in type {TradePriceType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, CA, CT, CU, DI, EC, NW, PC, PE, PK, PL, PT, PU, PV, PW, QT, SR, TB, TU, TW, WH, WI] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{PriceTypeCodeListAgencyIDContentType}{0..1} in type {PriceTypeCodeType}new: @listAgencyID{PriceTypeCodeListAgencyIDContentType}{0..1} in type {PriceTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/TypeCode/@listID removed @listID {token}{0..1} in type {PriceTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/GrossPriceProductTradePrice/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {PriceTypeCodeType} @@ -7069,43 +8433,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -7114,17 +8488,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -7132,130 +8509,162 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/ConversionRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceUnitBasisNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetUnitBaseNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate/@format removed @format {string}{0..1} in type {RateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}new: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {TradeTaxType}new: {CurrencyCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}new: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@name removed @name {string}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/GrandTotalAmount added {AmountType}{0..*} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxBasisAllowanceRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}new: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listAgencyID modifying attribute: old: @listAgencyID{AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType}new: @listAgencyID{AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listVersionID removed @listVersionID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode modifying element: old: {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeIdentificationCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeIdentificationCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AllowanceChargeIdentificationCodeType} @@ -7267,43 +8676,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -7312,17 +8731,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -7330,120 +8752,150 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/BasisDateTime added {DateTimeType}{0..1} in type {TradePriceType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/DeliveryTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/DeliveryTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/DeliveryTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/DeliveryTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CalculatedRate/@format removed @format {string}{0..1} in type {RateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CalculationSequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}new: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {TradeTaxType}new: {CurrencyCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}new: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@name removed @name {string}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/GrandTotalAmount added {AmountType}{0..*} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/ServiceSupplyTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/ServiceSupplyTradeCountry/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/ServiceSupplyTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/ServiceSupplyTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TaxBasisAllowanceRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}new: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/OrderUnitConversionFactorNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/Type added {TextType}{0..*} in type {TradePriceType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/TypeCode modifying element: old: {PriceTypeCodeType}{0..1} in type {TradePriceType}new: {PriceTypeCodeType}{0..1} in type {TradePriceType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, CA, CT, CU, DI, EC, NW, PC, PE, PK, PL, PT, PU, PV, PW, QT, SR, TB, TU, TW, WH, WI] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{PriceTypeCodeListAgencyIDContentType}{0..1} in type {PriceTypeCodeType}new: @listAgencyID{PriceTypeCodeListAgencyIDContentType}{0..1} in type {PriceTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/TypeCode/@listID removed @listID {token}{0..1} in type {PriceTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/NetPriceProductTradePrice/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {PriceTypeCodeType} @@ -7457,43 +8909,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -7502,17 +8964,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -7520,22 +8985,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeAgreement/SellerOrderReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -7553,6 +9022,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/LinearSpatialDimension/DiameterMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {LinearUnitMeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/LinearSpatialDimension/HeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/LinearSpatialDimension/LengthMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/LinearSpatialDimension/TypeCode modifying element: old: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}new: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/LinearSpatialDimension/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}new: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/LinearSpatialDimension/TypeCode/@listID removed @listID {token}{0..1} in type {DimensionTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/LinearSpatialDimension/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DimensionTypeCodeType} @@ -7563,6 +9033,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/MaximumLinearSpatialDimension/DiameterMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {LinearUnitMeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/MaximumLinearSpatialDimension/HeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/MaximumLinearSpatialDimension/LengthMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/MaximumLinearSpatialDimension/TypeCode modifying element: old: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}new: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/MaximumLinearSpatialDimension/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}new: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/MaximumLinearSpatialDimension/TypeCode/@listID removed @listID {token}{0..1} in type {DimensionTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/MaximumLinearSpatialDimension/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DimensionTypeCodeType} @@ -7574,109 +9045,137 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/DiameterMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {LinearUnitMeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/HeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/LengthMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/TypeCode modifying element: old: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}new: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}new: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/TypeCode/@listID removed @listID {token}{0..1} in type {DimensionTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DimensionTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/TypeCode/@name removed @name {string}{0..1} in type {DimensionTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/ValueMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/WidthMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/AutomaticDataCaptureMethodTypeCode modifying element: old: {AutomaticDataCaptureMethodCodeType}{0..*} in type {PackagingMarkingType}new: {AutomaticDataCaptureMethodCodeType}{0..*} in type {PackagingMarkingType}changed enumeration from [] to [50, 51, 52, 64, 65, 67, 78, 79, 81, 82] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/AutomaticDataCaptureMethodTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{AutomaticDataCaptureMethodCodeListAgencyIDContentType}{0..1} in type {AutomaticDataCaptureMethodCodeType}new: @listAgencyID{AutomaticDataCaptureMethodCodeListAgencyIDContentType}{0..1} in type {AutomaticDataCaptureMethodCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/AutomaticDataCaptureMethodTypeCode/@listID removed @listID {token}{0..1} in type {AutomaticDataCaptureMethodCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/AutomaticDataCaptureMethodTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AutomaticDataCaptureMethodCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/AutomaticDataCaptureMethodTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AutomaticDataCaptureMethodCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/TypeCode modifying element: old: {PackagingMarkingCodeType}{0..*} in type {PackagingMarkingType}new: {PackagingMarkingCodeType}{0..*} in type {PackagingMarkingType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{PackagingMarkingCodeListAgencyIDContentType}{0..1} in type {PackagingMarkingCodeType}new: @listAgencyID{PackagingMarkingCodeListAgencyIDContentType}{0..1} in type {PackagingMarkingCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/TypeCode/@listID removed @listID {token}{0..1} in type {PackagingMarkingCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {PackagingMarkingCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {PackagingMarkingCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/TypeCode modifying element: old: {PackageTypeCodeType}{0..1} in type {SupplyChainPackagingType}new: {PackageTypeCodeType}{0..1} in type {SupplyChainPackagingType}changed enumeration from [] to [43, 44, 1A, 1B, 1D, 1F, 1G, 1W, 2C, 3A, 3H, 4A, 4B, 4C, 4D, 4F, 4G, 4H, 5H, 5L, 5M, 6H, 6P, 7A, 7B, 8A, 8B, 8C, AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AL, AM, AP, AT, AV, B4, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, BV, BW, BX, BY, BZ, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CO, CP, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DG, DH, DI, DJ, DK, DL, DM, DN, DP, DR, DS, DT, DU, DV, DW, DX, DY, EC, ED, EE, EF, EG, EH, EI, EN, FB, FC, FD, FE, FI, FL, FO, FP, FR, FT, FW, FX, GB, GI, GL, GR, GU, GY, GZ, HA, HB, HC, HG, HN, HR, IA, IB, IC, ID, IE, IF, IG, IH, IK, IL, IN, IZ, JB, JC, JG, JR, JT, JY, KG, KI, LE, LG, LT, LU, LV, LZ, MA, MB, MC, ME, MR, MS, MT, MW, MX, NA, NE, NF, NG, NS, NT, NU, NV, O1, O2, O3, O4, O5, O6, O7, O8, O9, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PL, PN, PO, PP, PR, PT, PU, PV, PX, PY, PZ, QA, QB, QC, QD, QF, QG, QH, QJ, QK, QL, QM, QN, QP, QQ, QR, QS, RD, RG, RJ, RK, RL, RO, RT, RZ, SA, SB, SC, SD, SE, SH, SI, SK, SL, SM, SO, SP, SS, ST, SU, SV, SW, SY, SZ, T1, TB, TC, TD, TE, TG, TI, TK, TL, TN, TO, TR, TS, TT, TU, TV, TW, TY, TZ, UC, UN, VA, VG, VI, VK, VL, VN, VO, VP, VQ, VR, VS, VY, WA, WB, WC, WD, WF, WG, WH, WJ, WK, WL, WM, WN, WP, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, XA, XB, XC, XD, XF, XG, XH, XJ, XK, YA, YB, YC, YD, YF, YG, YH, YJ, YK, YL, YM, YN, YP, YQ, YR, YS, YT, YV, YW, YX, YY, YZ, ZA, ZB, ZC, ZD, ZF, ZG, ZH, ZJ, ZK, ZL, ZM, ZN, ZP, ZQ, ZR, ZS, ZT, ZU, ZV, ZW, ZX, ZY, ZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{PackageTypeCodeListAgencyIDContentType}{0..1} in type {PackageTypeCodeType}new: @listAgencyID{token}{0..1} in type {PackageTypeCodeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to http://www.w3.org/2001/XMLSchema changed type from PackageTypeCodeListAgencyIDContentType to token /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/TypeCode/@listID removed @listID {token}{0..1} in type {PackageTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {PackageTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/TypeCode/@name removed @name {string}{0..1} in type {PackageTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeDelivery/IncludedSupplyChainPackaging/WeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/AmountDirectionCode added {CodeType}{0..1} in type {SubordinateLineTradeSettlementType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/CalculatedRate/@format removed @format {string}{0..1} in type {RateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/CalculationSequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/CategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}new: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/CategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/CurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {TradeTaxType}new: {CurrencyCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/CurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/CurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/CurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/CurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}new: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@name removed @name {string}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/GrandTotalAmount added {AmountType}{0..*} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/PlaceApplicableTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/ServiceSupplyTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/ServiceSupplyTradeCountry/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/ServiceSupplyTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/ServiceSupplyTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/TaxBasisAllowanceRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}new: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/IncludedSubordinateTradeLineItem/SpecifiedSubordinateLineTradeSettlement/ApplicableTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -7692,43 +9191,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -7737,17 +9246,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -7755,33 +9267,39 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryDiscontinuationCode added {CodeType}{0..1} in type {TradeDeliveryTermsType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode modifying element: old: {DeliveryTermsCodeType}{0..1} in type {TradeDeliveryTermsType}new: {DeliveryTermsCodeType}{0..1} in type {TradeDeliveryTermsType}changed enumeration from [] to [1, 2, CFR, CIF, CIP, CPT, DAP, DDP, DPU, EXW, FAS, FCA, FOB] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DeliveryTermsCodeListAgencyIDContentType}{0..1} in type {DeliveryTermsCodeType}new: @listAgencyID{DeliveryTermsCodeListAgencyIDContentType}{0..1} in type {DeliveryTermsCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode/@listID removed @listID {token}{0..1} in type {DeliveryTermsCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DeliveryTermsCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ApplicableTradeDeliveryTerms/FunctionCode added {DeliveryTermsFunctionCodeType}{0..1} in type {TradeDeliveryTermsType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ApplicableTradeDeliveryTerms/PartialDeliveryAllowedIndicator added {IndicatorType}{0..1} in type {TradeDeliveryTermsType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ApplicableTradeDeliveryTerms/RelevantTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ApplicableTradeDeliveryTerms/RelevantTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ApplicableTradeDeliveryTerms/RelevantTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ApplicableTradeDeliveryTerms/RelevantTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -7793,43 +9311,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -7838,17 +9366,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -7856,64 +9387,78 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -7922,17 +9467,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -7940,6 +9488,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerRequisitionerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -7952,43 +9501,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -7997,17 +9556,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -8015,22 +9577,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -8044,43 +9610,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -8089,17 +9665,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -8107,22 +9686,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/DemandForecastReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -8136,43 +9719,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -8181,17 +9774,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -8199,130 +9795,162 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/ConversionRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceUnitBasisNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetUnitBaseNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate/@format removed @format {string}{0..1} in type {RateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}new: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {TradeTaxType}new: {CurrencyCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}new: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@name removed @name {string}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/GrandTotalAmount added {AmountType}{0..*} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxBasisAllowanceRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}new: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listAgencyID modifying attribute: old: @listAgencyID{AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType}new: @listAgencyID{AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listVersionID removed @listVersionID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode modifying element: old: {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeIdentificationCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeIdentificationCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AllowanceChargeIdentificationCodeType} @@ -8334,43 +9962,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -8379,17 +10017,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -8397,162 +10038,202 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AssociatedReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/BasisDateTime added {DateTimeType}{0..1} in type {TradePriceType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/DeliveryTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/DeliveryTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/DeliveryTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/DeliveryTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CalculatedRate/@format removed @format {string}{0..1} in type {RateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CalculationSequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}new: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {TradeTaxType}new: {CurrencyCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}new: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@name removed @name {string}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/GrandTotalAmount added {AmountType}{0..*} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/ServiceSupplyTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/ServiceSupplyTradeCountry/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/ServiceSupplyTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/ServiceSupplyTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TaxBasisAllowanceRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}new: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/OrderUnitConversionFactorNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/Type added {TextType}{0..*} in type {TradePriceType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/TypeCode modifying element: old: {PriceTypeCodeType}{0..1} in type {TradePriceType}new: {PriceTypeCodeType}{0..1} in type {TradePriceType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, CA, CT, CU, DI, EC, NW, PC, PE, PK, PL, PT, PU, PV, PW, QT, SR, TB, TU, TW, WH, WI] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{PriceTypeCodeListAgencyIDContentType}{0..1} in type {PriceTypeCodeType}new: @listAgencyID{PriceTypeCodeListAgencyIDContentType}{0..1} in type {PriceTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/TypeCode/@listID removed @listID {token}{0..1} in type {PriceTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {PriceTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/ValiditySpecifiedPeriod/DurationMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/ValiditySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -8561,17 +10242,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -8579,47 +10263,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemBuyerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -8628,17 +10323,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -8646,6 +10344,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ItemSellerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -8658,43 +10357,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -8703,17 +10412,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -8721,130 +10433,162 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/ConversionRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceUnitBasisNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetUnitBaseNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate/@format removed @format {string}{0..1} in type {RateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}new: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {TradeTaxType}new: {CurrencyCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}new: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@name removed @name {string}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/GrandTotalAmount added {AmountType}{0..*} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxBasisAllowanceRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}new: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listAgencyID modifying attribute: old: @listAgencyID{AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType}new: @listAgencyID{AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listVersionID removed @listVersionID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode modifying element: old: {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeIdentificationCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeIdentificationCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AllowanceChargeIdentificationCodeType} @@ -8856,43 +10600,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -8901,17 +10655,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -8919,120 +10676,150 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AssociatedReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/BasisDateTime added {DateTimeType}{0..1} in type {TradePriceType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/DeliveryTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/DeliveryTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/DeliveryTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/DeliveryTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CalculatedRate/@format removed @format {string}{0..1} in type {RateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CalculationSequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}new: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {TradeTaxType}new: {CurrencyCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}new: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@name removed @name {string}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/GrandTotalAmount added {AmountType}{0..*} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/ServiceSupplyTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/ServiceSupplyTradeCountry/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/ServiceSupplyTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/ServiceSupplyTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TaxBasisAllowanceRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}new: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/OrderUnitConversionFactorNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/Type added {TextType}{0..*} in type {TradePriceType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/TypeCode modifying element: old: {PriceTypeCodeType}{0..1} in type {TradePriceType}new: {PriceTypeCodeType}{0..1} in type {TradePriceType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, CA, CT, CU, DI, EC, NW, PC, PE, PK, PL, PT, PU, PV, PW, QT, SR, TB, TU, TW, WH, WI] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{PriceTypeCodeListAgencyIDContentType}{0..1} in type {PriceTypeCodeType}new: @listAgencyID{PriceTypeCodeListAgencyIDContentType}{0..1} in type {PriceTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/TypeCode/@listID removed @listID {token}{0..1} in type {PriceTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {PriceTypeCodeType} @@ -9046,43 +10833,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -9091,17 +10888,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -9109,22 +10909,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/PromotionalDealReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -9138,43 +10942,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -9183,17 +10997,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -9201,22 +11018,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -9230,43 +11051,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -9275,17 +11106,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -9293,22 +11127,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/RequisitionerReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -9322,43 +11160,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -9367,17 +11215,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -9385,22 +11236,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/SellerOrderReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -9414,43 +11269,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -9459,17 +11324,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -9477,22 +11345,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -9504,12 +11376,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LatitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LongitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/SubordinateLocation added {SubordinateLocationType}{0..1} in type {LogisticsLocationType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeTypechanged enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{LocationFunctionCodeListAgencyIDContentType}{0..1} in type {LocationFunctionCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to LocationFunctionCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -9528,12 +11401,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LatitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LongitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/SubordinateLocation added {SubordinateLocationType}{0..1} in type {LogisticsLocationType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeTypechanged enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{LocationFunctionCodeListAgencyIDContentType}{0..1} in type {LocationFunctionCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to LocationFunctionCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualDespatchSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -9552,12 +11426,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LatitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LongitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/SubordinateLocation added {SubordinateLocationType}{0..1} in type {LogisticsLocationType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeTypechanged enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{LocationFunctionCodeListAgencyIDContentType}{0..1} in type {LocationFunctionCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to LocationFunctionCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualPickUpSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -9576,12 +11451,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LatitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LongitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/SubordinateLocation added {SubordinateLocationType}{0..1} in type {LogisticsLocationType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeTypechanged enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{LocationFunctionCodeListAgencyIDContentType}{0..1} in type {LocationFunctionCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to LocationFunctionCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ActualReceiptSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -9602,43 +11478,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -9647,17 +11533,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -9665,22 +11554,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/AdditionalReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -9694,43 +11587,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -9739,17 +11642,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -9757,22 +11663,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ConsumptionReportReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -9786,43 +11696,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -9831,17 +11751,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -9849,22 +11772,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -9878,43 +11805,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -9923,17 +11860,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -9941,22 +11881,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -9974,6 +11918,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/LinearSpatialDimension/DiameterMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {LinearUnitMeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/LinearSpatialDimension/HeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/LinearSpatialDimension/LengthMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/LinearSpatialDimension/TypeCode modifying element: old: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}new: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/LinearSpatialDimension/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}new: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/LinearSpatialDimension/TypeCode/@listID removed @listID {token}{0..1} in type {DimensionTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/LinearSpatialDimension/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DimensionTypeCodeType} @@ -9984,6 +11929,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/MaximumLinearSpatialDimension/DiameterMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {LinearUnitMeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/MaximumLinearSpatialDimension/HeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/MaximumLinearSpatialDimension/LengthMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/MaximumLinearSpatialDimension/TypeCode modifying element: old: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}new: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/MaximumLinearSpatialDimension/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}new: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/MaximumLinearSpatialDimension/TypeCode/@listID removed @listID {token}{0..1} in type {DimensionTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/MaximumLinearSpatialDimension/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DimensionTypeCodeType} @@ -9995,20 +11941,24 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/DiameterMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {LinearUnitMeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/HeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/LengthMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/TypeCode modifying element: old: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}new: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}new: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/TypeCode/@listID removed @listID {token}{0..1} in type {DimensionTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DimensionTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/TypeCode/@name removed @name {string}{0..1} in type {DimensionTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/ValueMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/MinimumLinearSpatialDimension/WidthMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/AutomaticDataCaptureMethodTypeCode modifying element: old: {AutomaticDataCaptureMethodCodeType}{0..*} in type {PackagingMarkingType}new: {AutomaticDataCaptureMethodCodeType}{0..*} in type {PackagingMarkingType}changed enumeration from [] to [50, 51, 52, 64, 65, 67, 78, 79, 81, 82] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/AutomaticDataCaptureMethodTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{AutomaticDataCaptureMethodCodeListAgencyIDContentType}{0..1} in type {AutomaticDataCaptureMethodCodeType}new: @listAgencyID{AutomaticDataCaptureMethodCodeListAgencyIDContentType}{0..1} in type {AutomaticDataCaptureMethodCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/AutomaticDataCaptureMethodTypeCode/@listID removed @listID {token}{0..1} in type {AutomaticDataCaptureMethodCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/AutomaticDataCaptureMethodTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AutomaticDataCaptureMethodCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/AutomaticDataCaptureMethodTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AutomaticDataCaptureMethodCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/TypeCode modifying element: old: {PackagingMarkingCodeType}{0..*} in type {PackagingMarkingType}new: {PackagingMarkingCodeType}{0..*} in type {PackagingMarkingType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{PackagingMarkingCodeListAgencyIDContentType}{0..1} in type {PackagingMarkingCodeType}new: @listAgencyID{PackagingMarkingCodeListAgencyIDContentType}{0..1} in type {PackagingMarkingCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/TypeCode/@listID removed @listID {token}{0..1} in type {PackagingMarkingCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {PackagingMarkingCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/SpecifiedPackagingMarking/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {PackagingMarkingCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/TypeCode modifying element: old: {PackageTypeCodeType}{0..1} in type {SupplyChainPackagingType}new: {PackageTypeCodeType}{0..1} in type {SupplyChainPackagingType}changed enumeration from [] to [43, 44, 1A, 1B, 1D, 1F, 1G, 1W, 2C, 3A, 3H, 4A, 4B, 4C, 4D, 4F, 4G, 4H, 5H, 5L, 5M, 6H, 6P, 7A, 7B, 8A, 8B, 8C, AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AL, AM, AP, AT, AV, B4, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, BV, BW, BX, BY, BZ, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CO, CP, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DG, DH, DI, DJ, DK, DL, DM, DN, DP, DR, DS, DT, DU, DV, DW, DX, DY, EC, ED, EE, EF, EG, EH, EI, EN, FB, FC, FD, FE, FI, FL, FO, FP, FR, FT, FW, FX, GB, GI, GL, GR, GU, GY, GZ, HA, HB, HC, HG, HN, HR, IA, IB, IC, ID, IE, IF, IG, IH, IK, IL, IN, IZ, JB, JC, JG, JR, JT, JY, KG, KI, LE, LG, LT, LU, LV, LZ, MA, MB, MC, ME, MR, MS, MT, MW, MX, NA, NE, NF, NG, NS, NT, NU, NV, O1, O2, O3, O4, O5, O6, O7, O8, O9, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PL, PN, PO, PP, PR, PT, PU, PV, PX, PY, PZ, QA, QB, QC, QD, QF, QG, QH, QJ, QK, QL, QM, QN, QP, QQ, QR, QS, RD, RG, RJ, RK, RL, RO, RT, RZ, SA, SB, SC, SD, SE, SH, SI, SK, SL, SM, SO, SP, SS, ST, SU, SV, SW, SY, SZ, T1, TB, TC, TD, TE, TG, TI, TK, TL, TN, TO, TR, TS, TT, TU, TV, TW, TY, TZ, UC, UN, VA, VG, VI, VK, VL, VN, VO, VP, VQ, VR, VS, VY, WA, WB, WC, WD, WF, WG, WH, WJ, WK, WL, WM, WN, WP, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, XA, XB, XC, XD, XF, XG, XH, XJ, XK, YA, YB, YC, YD, YF, YG, YH, YJ, YK, YL, YM, YN, YP, YQ, YR, YS, YT, YV, YW, YX, YY, YZ, ZA, ZB, ZC, ZD, ZF, ZG, ZH, ZJ, ZK, ZL, ZM, ZN, ZP, ZQ, ZR, ZS, ZT, ZU, ZV, ZW, ZX, ZY, ZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{PackageTypeCodeListAgencyIDContentType}{0..1} in type {PackageTypeCodeType}new: @listAgencyID{token}{0..1} in type {PackageTypeCodeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to http://www.w3.org/2001/XMLSchema changed type from PackageTypeCodeListAgencyIDContentType to token /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/TypeCode/@listID removed @listID {token}{0..1} in type {PackageTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/IncludedSupplyChainPackaging/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {PackageTypeCodeType} @@ -10024,43 +11974,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -10069,17 +12029,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -10087,22 +12050,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/PackingListReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -10116,43 +12083,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -10161,17 +12138,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -10179,22 +12159,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -10211,43 +12195,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -10256,17 +12250,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -10274,64 +12271,78 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/AssociatedReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -10340,17 +12351,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -10358,48 +12372,59 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CarrierTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ChargeableWeightMeasure added {WeightUnitMeasureType}{0..1} in type {SupplyChainConsignmentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -10408,17 +12433,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -10426,47 +12454,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsigneeTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -10475,17 +12514,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -10493,47 +12535,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/ConsignorTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -10542,17 +12595,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -10560,47 +12616,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsExportAgentTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -10609,17 +12676,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -10627,47 +12697,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/CustomsImportAgentTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -10676,17 +12757,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -10694,47 +12778,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/DeliveryTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -10743,17 +12838,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -10761,6 +12859,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/FreightForwarderTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -10769,43 +12868,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GrossVolumeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {VolumeUnitMeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GrossWeightMeasure/@unitCode modifying attribute: old: @unitCode{WeightUnitMeasureUnitCodeContentType}{0..1} in type {WeightUnitMeasureType}new: @unitCode{MeasurementUnitCommonCodeWeightContentType}{0..1} in type {WeightUnitMeasureType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:MeasurementUnitCommonCodeWeight:4 changed type from WeightUnitMeasureUnitCodeContentType to MeasurementUnitCommonCodeWeightContentTypechanged enumeration from [] to [KGM, TNE] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GrossWeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {WeightUnitMeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -10814,17 +12923,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -10832,6 +12944,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/GroupingCentreTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -10843,13 +12956,16 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/GrossWeightMeasure/@unitCode modifying attribute: old: @unitCode{WeightUnitMeasureUnitCodeContentType}{0..1} in type {WeightUnitMeasureType}new: @unitCode{MeasurementUnitCommonCodeWeightContentType}{0..1} in type {WeightUnitMeasureType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:MeasurementUnitCommonCodeWeight:4 changed type from WeightUnitMeasureUnitCodeContentType to MeasurementUnitCommonCodeWeightContentTypechanged enumeration from [] to [KGM, TNE] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/GrossWeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {WeightUnitMeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/Identification modifying element: old: {TextType}{0..1} in type {TransportCargoType}new: {TextType}{0..*} in type {TransportCargoType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/OperationalCategoryCode modifying element: old: {CargoOperationalCategoryCodeType}{0..1} in type {TransportCargoType}new: {CargoOperationalCategoryCodeType}{0..1} in type {TransportCargoType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/OperationalCategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{CargoOperationalCategoryCodeListAgencyIDContentType}{0..1} in type {CargoOperationalCategoryCodeType}new: @listAgencyID{CargoOperationalCategoryCodeListAgencyIDContentType}{0..1} in type {CargoOperationalCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/OperationalCategoryCode/@listID removed @listID {token}{0..1} in type {CargoOperationalCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/OperationalCategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {CargoOperationalCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/OperationalCategoryCode/@name removed @name {string}{0..1} in type {CargoOperationalCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/StatisticalClassificationCode modifying element: old: {CargoCommodityCategoryCodeType}{0..1} in type {TransportCargoType}new: {CargoCommodityCategoryCodeType}{0..1} in type {TransportCargoType}changed enumeration from [] to [ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/StatisticalClassificationCode/@listID removed @listID {token}{0..1} in type {CargoCommodityCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/StatisticalClassificationCode/@listVersionID removed @listVersionID {token}{0..1} in type {CargoCommodityCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/StatisticalClassificationCode/@name removed @name {string}{0..1} in type {CargoCommodityCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/TypeCode modifying element: old: {CargoCategoryCodeType}{0..1} in type {TransportCargoType}new: {CargoCategoryCodeType}{0..1} in type {TransportCargoType}changed enumeration from [] to [0, 1, 2, 3, 4, 5, 6, 7, 9] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{CargoCategoryCodeListAgencyIDContentType}{0..1} in type {CargoCategoryCodeType}new: @listAgencyID{CargoCategoryCodeListAgencyIDContentType}{0..1} in type {CargoCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/TypeCode/@listID removed @listID {token}{0..1} in type {CargoCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NatureIdentificationTransportCargo/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {CargoCategoryCodeType} @@ -10858,9 +12974,11 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NetWeightMeasure/@unitCode modifying attribute: old: @unitCode{token}{0..1} in type {MeasureType}new: @unitCode{MeasurementUnitCommonCodeWeightContentType}{0..1} in type {WeightUnitMeasureType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:codelist:standard:UNECE:MeasurementUnitCommonCodeWeight:4 changed type from token to MeasurementUnitCommonCodeWeightContentType changed maxLength from null to 3 changed minLength from null to 1changed enumeration from [] to [KGM, TNE] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/NetWeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/PreviousAdministrativeReferencedDocument added {ReferencedDocumentType}{0..*} in type {SupplyChainConsignmentItemType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/TypeCode modifying element: old: {GoodsTypeCodeType}{0..1} in type {SupplyChainConsignmentItemType}new: {GoodsTypeCodeType}{0..1} in type {SupplyChainConsignmentItemType}changed enumeration from [] to [ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/TypeCode/@listID removed @listID {token}{0..1} in type {GoodsTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {GoodsTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/TypeCode/@name removed @name {string}{0..1} in type {GoodsTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/TypeExtensionCode modifying element: old: {GoodsTypeExtensionCodeType}{0..1} in type {SupplyChainConsignmentItemType}new: {GoodsTypeExtensionCodeType}{0..1} in type {SupplyChainConsignmentItemType}changed enumeration from [] to [ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/TypeExtensionCode/@listID removed @listID {token}{0..1} in type {GoodsTypeExtensionCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/TypeExtensionCode/@listVersionID removed @listVersionID {token}{0..1} in type {GoodsTypeExtensionCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/IncludedSupplyChainConsignmentItem/TypeExtensionCode/@name removed @name {string}{0..1} in type {GoodsTypeExtensionCodeType} @@ -10870,55 +12988,67 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/NetWeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/Cycle added {TextType}{0..1} in type {LogisticsTransportMovementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ID added {IDType}{0..1} in type {LogisticsTransportMovementType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ModeCode modifying element: old: {TransportModeCodeType}{0..1} in type {LogisticsTransportMovementType}new: {TransportModeCodeType}{0..1} in type {LogisticsTransportMovementType}changed enumeration from [] to [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ModeCode/@listAgencyID modifying attribute: old: @listAgencyID{TransportModeCodeListAgencyIDContentType}{0..1} in type {TransportModeCodeType}new: @listAgencyID{TransportModeCodeListAgencyIDContentType}{0..1} in type {TransportModeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ModeCode/@listID removed @listID {token}{0..1} in type {TransportModeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ModeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TransportModeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ModeCode/@name removed @name {string}{0..1} in type {TransportModeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/Service added {TextType}{0..1} in type {LogisticsTransportMovementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ServiceCode added {CodeType}{0..1} in type {LogisticsTransportMovementType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/StageCode modifying element: old: {TransportMovementStageCodeType}{0..1} in type {LogisticsTransportMovementType}new: {TransportMovementStageCodeType}{0..1} in type {LogisticsTransportMovementType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/StageCode/@listAgencyID modifying attribute: old: @listAgencyID{TransportMovementStageCodeListAgencyIDContentType}{0..1} in type {TransportMovementStageCodeType}new: @listAgencyID{TransportMovementStageCodeListAgencyIDContentType}{0..1} in type {TransportMovementStageCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/StageCode/@listID removed @listID {token}{0..1} in type {TransportMovementStageCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/StageCode/@listVersionID removed @listVersionID {token}{0..1} in type {TransportMovementStageCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/StageCode/@name removed @name {string}{0..1} in type {TransportMovementStageCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/StatusCode added {StatusCodeType}{0..1} in type {LogisticsTransportMovementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/Type added {TextType}{0..1} in type {LogisticsTransportMovementType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -10927,17 +13057,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -10945,10 +13078,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/OwnerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/TypeCode modifying element: old: {TransportMeansTypeCodeType}{0..1} in type {LogisticsTransportMeansType}new: {TransportMeansTypeCodeType}{0..1} in type {LogisticsTransportMeansType}changed enumeration from [] to [1501, 1502, 1503, 1504, 1505, 1506, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1521, 1522, 1523, 1524, 1525, 1531, 1532, 1533, 1534, 1541, 1542, 1543, 1551, 1552, 1553, 1591, 1592, 1593, 1594, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1711, 1712, 1721, 1723, 1724, 1725, 1726, 1727, 1728, 1729, 1751, 1752, 1753, 1761, 1762, 1763, 1764, 1765, 1766, 1781, 1782, 2201, 2202, 2203, 2301, 2302, 2303, 2304, 2305, 3100, 3101, 3102, 3103, 3104, 3105, 3106, 3107, 3108, 3109, 3110, 3111, 3112, 3113, 3114, 3115, 3116, 3117, 3118, 3119, 3120, 3121, 3122, 3123, 3124, 3125, 3126, 3127, 3128, 3129, 3130, 3131, 3132, 3133, 3134, 3135, 3136, 3137, 3138, 3201, 3301, 3302, 3303, 3304, 4000, 5000, 8021, 8022, 8023, 8161, 8162, 8163, 8441, 8442, 8443, 8444, 8445, 8446, 8447, 8448, 8451, 8452, 8453, 8454] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TransportMeansTypeCodeListAgencyIDContentType}{0..1} in type {TransportMeansTypeCodeType}new: @listAgencyID{TransportMeansTypeCodeListAgencyIDContentType}{0..1} in type {TransportMeansTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/TypeCode/@listID removed @listID {token}{0..1} in type {TransportMeansTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/UsedLogisticsTransportMeans/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TransportMeansTypeCodeType} @@ -10962,43 +13097,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -11007,17 +13152,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -11025,22 +13173,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/TransportContractReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -11049,6 +13201,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/AffixedLogisticsSeal added {LogisticsSealType}{0..*} in type {LogisticsTransportEquipmentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/ApplicableNote added {NoteType}{0..*} in type {LogisticsTransportEquipmentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/CarrierAssignedBookingID added {IDType}{0..*} in type {LogisticsTransportEquipmentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/CategoryCode modifying element: old: {TransportEquipmentCategoryCodeType}{0..1} in type {LogisticsTransportEquipmentType}new: {TransportEquipmentCategoryCodeType}{0..1} in type {LogisticsTransportEquipmentType}changed enumeration from [] to [AA, AB, AD, AE, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AT, BB, BL, BPN, BPO, BPP, BPQ, BPR, BPS, BPT, BPU, BPV, BPW, BPX, BPY, BPZ, BR, BX, CH, CN, DPA, DPB, DPC, DPD, DPE, DPF, DPG, DPH, DPI, DPJ, DPK, DPL, DPM, DPN, DPO, EFP, EFQ, EFR, EFS, EFT, EFU, EFV, EFW, EFX, EFY, EFZ, EGA, EGB, EGC, EGD, EGE, EGF, EGG, EGH, EGI, EYP, FPN, FPR, IL, LAR, LU, MPA, PA, PBP, PFP, PL, PPA, PST, RF, RG, RGF, RO, RR, SPP, STR, SW, TE, TP, TS, TSU, UL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/CategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{TransportEquipmentCategoryCodeListAgencyIDContentType}{0..1} in type {TransportEquipmentCategoryCodeType}new: @listAgencyID{TransportEquipmentCategoryCodeListAgencyIDContentType}{0..1} in type {TransportEquipmentCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/CategoryCode/@listID removed @listID {token}{0..1} in type {TransportEquipmentCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/CategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {TransportEquipmentCategoryCodeType} @@ -11066,6 +13219,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LinearSpatialDimension/DiameterMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {LinearUnitMeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LinearSpatialDimension/HeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LinearSpatialDimension/LengthMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LinearSpatialDimension/TypeCode modifying element: old: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}new: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LinearSpatialDimension/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}new: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LinearSpatialDimension/TypeCode/@listID removed @listID {token}{0..1} in type {DimensionTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LinearSpatialDimension/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DimensionTypeCodeType} @@ -11076,6 +13230,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/LoadingLengthMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {LinearUnitMeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/ReturnableIndicator added {IndicatorType}{0..1} in type {LogisticsTransportEquipmentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/SealedIndicator added {IndicatorType}{0..1} in type {LogisticsTransportEquipmentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/UsedCapacityCode modifying element: old: {TransportEquipmentFullnessCodeType}{0..1} in type {LogisticsTransportEquipmentType}new: {TransportEquipmentFullnessCodeType}{0..1} in type {LogisticsTransportEquipmentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/UsedCapacityCode/@listAgencyID modifying attribute: old: @listAgencyID{TransportEquipmentFullnessCodeListAgencyIDContentType}{0..1} in type {TransportEquipmentFullnessCodeType}new: @listAgencyID{TransportEquipmentFullnessCodeListAgencyIDContentType}{0..1} in type {TransportEquipmentFullnessCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/UsedCapacityCode/@listID removed @listID {token}{0..1} in type {TransportEquipmentFullnessCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RelatedSupplyChainConsignment/UtilizedLogisticsTransportEquipment/UsedCapacityCode/@listVersionID removed @listVersionID {token}{0..1} in type {TransportEquipmentFullnessCodeType} @@ -11086,12 +13241,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RequestedDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LatitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RequestedDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LongitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RequestedDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RequestedDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RequestedDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RequestedDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RequestedDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RequestedDeliverySupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RequestedDeliverySupplyChainEvent/OccurrenceLogisticsLocation/SubordinateLocation added {SubordinateLocationType}{0..1} in type {LogisticsLocationType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RequestedDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RequestedDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeTypechanged enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RequestedDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RequestedDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{LocationFunctionCodeListAgencyIDContentType}{0..1} in type {LocationFunctionCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to LocationFunctionCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RequestedDeliverySupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -11104,43 +13260,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RequestedDeliverySupplyChainEvent/OccurrenceSpecifiedPeriod/DurationMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RequestedDeliverySupplyChainEvent/OccurrenceSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/RequestedDeliverySupplyChainEvent/TimeOccurrenceDateTime added {TimeOnlyFormattedDateTimeType}{0..1} in type {SupplyChainEventType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -11149,17 +13315,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -11167,47 +13336,58 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipFromTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -11216,17 +13396,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -11234,52 +13417,64 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/SpecifiedDeliveryAdjustment/ReasonCode modifying element: old: {AdjustmentReasonCodeType}{0..1} in type {DeliveryAdjustmentType}new: {AdjustmentReasonCodeType}{0..1} in type {DeliveryAdjustmentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/SpecifiedDeliveryAdjustment/ReasonCode/@listAgencyID modifying attribute: old: @listAgencyID{AdjustmentReasonCodeListAgencyIDContentType}{0..1} in type {AdjustmentReasonCodeType}new: @listAgencyID{AdjustmentReasonCodeListAgencyIDContentType}{0..1} in type {AdjustmentReasonCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/SpecifiedDeliveryAdjustment/ReasonCode/@listID removed @listID {token}{0..1} in type {AdjustmentReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/SpecifiedDeliveryAdjustment/ReasonCode/@listVersionID removed @listVersionID {token}{0..1} in type {AdjustmentReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/TheoreticalWeightMeasure/@unitCode modifying attribute: old: @unitCode{WeightUnitMeasureUnitCodeContentType}{0..1} in type {WeightUnitMeasureType}new: @unitCode{MeasurementUnitCommonCodeWeightContentType}{0..1} in type {WeightUnitMeasureType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:MeasurementUnitCommonCodeWeight:4 changed type from WeightUnitMeasureUnitCodeContentType to MeasurementUnitCommonCodeWeightContentTypechanged enumeration from [] to [KGM, TNE] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/TheoreticalWeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {WeightUnitMeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -11288,17 +13483,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -11306,6 +13504,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -11318,43 +13517,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -11363,17 +13572,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -11381,110 +13593,138 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculatedRate/@format removed @format {string}{0..1} in type {RateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculationSequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}new: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {TradeTaxType}new: {CurrencyCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}new: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@name removed @name {string}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/GrandTotalAmount added {AmountType}{0..*} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/PlaceApplicableTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/ServiceSupplyTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/ServiceSupplyTradeCountry/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/ServiceSupplyTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/ServiceSupplyTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TaxBasisAllowanceRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}new: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -11501,43 +13741,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -11546,17 +13796,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -11564,104 +13817,130 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PayableSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PayableSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PayableSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PayableSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PayableSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PayableSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PayableSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PayableSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PayableSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PayableSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PayableSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PayableSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PayableSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/PurchaseSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SalesSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SalesSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SalesSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SalesSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SalesSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SalesSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SalesSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SalesSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SalesSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SalesSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SalesSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SalesSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SalesSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -11670,17 +13949,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -11688,6 +13970,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/ClaimRelatedTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -11701,43 +13984,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -11746,17 +14039,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -11764,22 +14060,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedFinancialAdjustment/InvoiceReferenceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -11792,12 +14092,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/PhysicalGeographicalCoordinate/LatitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/PhysicalGeographicalCoordinate/LongitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/SubordinateLocation added {SubordinateLocationType}{0..1} in type {LogisticsLocationType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeTypechanged enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/TypeCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{LocationFunctionCodeListAgencyIDContentType}{0..1} in type {LocationFunctionCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to LocationFunctionCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedFromLogisticsLocation/TypeCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -11813,12 +14114,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/PhysicalGeographicalCoordinate/LatitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/PhysicalGeographicalCoordinate/LongitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/SubordinateLocation added {SubordinateLocationType}{0..1} in type {LogisticsLocationType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeTypechanged enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/TypeCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{LocationFunctionCodeListAgencyIDContentType}{0..1} in type {LocationFunctionCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to LocationFunctionCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/TypeCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -11828,104 +14130,131 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedToLogisticsLocation/TypeCode/@name removed @name {string}{0..1} in type {CodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CalculatedRate/@format removed @format {string}{0..1} in type {RateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CalculationSequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}new: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {TradeTaxType}new: {CurrencyCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}new: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode/@name removed @name {string}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/GrandTotalAmount added {AmountType}{0..*} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/PlaceApplicableTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/ServiceSupplyTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/ServiceSupplyTradeCountry/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/ServiceSupplyTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/ServiceSupplyTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TaxBasisAllowanceRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}new: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/CalculationBasisCode modifying element: old: {LogisticsChargeCalculationBasisCodeType}{0..1} in type {LogisticsServiceChargeType}new: {LogisticsChargeCalculationBasisCodeType}{0..1} in type {LogisticsServiceChargeType}changed enumeration from [] to [ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/CalculationBasisCode/@listID removed @listID {token}{0..1} in type {LogisticsChargeCalculationBasisCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/CalculationBasisCode/@listVersionID removed @listVersionID {token}{0..1} in type {LogisticsChargeCalculationBasisCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/CalculationBasisCode/@name removed @name {string}{0..1} in type {LogisticsChargeCalculationBasisCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/ID modifying element: old: {FreightChargeTypeIDType}{0..1} in type {LogisticsServiceChargeType}new: {FreightChargeTypeIDType}{0..1} in type {LogisticsServiceChargeType}changed enumeration from [] to [100000, 100999, 101000, 101002, 101003, 101004, 101005, 101006, 101007, 101008, 101009, 101010, 101011, 101012, 101013, 101014, 101015, 101016, 101017, 101018, 101019, 101020, 101021, 101021, 101021, 101021, 101021, 101021, 101021, 101021, 101022, 101024, 101027, 101028, 101029, 101031, 101033, 101034, 101035, 101036, 101037, 101038, 101039, 101040, 101041, 101042, 101043, 101044, 101045, 101046, 101047, 101048, 101049, 101050, 101051, 101052, 101053, 101054, 101056, 101057, 101058, 101059, 101060, 101061, 102000, 102002, 102003, 102004, 102005, 102006, 102011, 102012, 102013, 102014, 102015, 102016, 102017, 102018, 102019, 102020, 102021, 102022, 102023, 102024, 102025, 102026, 102027, 102028, 102029, 102030, 102041, 102042, 102043, 102043, 102044, 102045, 102046, 102047, 102049, 102050, 102051, 102052, 102070, 102071, 102072, 102073, 102074, 102075, 102076, 102077, 102078, 102079, 102080, 102081, 102082, 102083, 102084, 102085, 102086, 102087, 102088, 103000, 103001, 103002, 103003, 103004, 103005, 103006, 103007, 103008, 103009, 103010, 103011, 103012, 103013, 103015, 103016, 103017, 103018, 103019, 104000, 104002, 104003, 104004, 104004, 104005, 104006, 104007, 104008, 104009, 104010, 104011, 104012, 104013, 104014, 104015, 104016, 104024, 104024, 104024, 104025, 104027, 104028, 104029, 104030, 104031, 104032, 104036, 104037, 104038, 104039, 104041, 104042, 104043, 104044, 104045, 104046, 104052, 104052, 104052, 104052, 104055, 104056, 104059, 104060, 104063, 104064, 104068, 104069, 104070, 104071, 104072, 104073, 104074, 104075, 104076, 104077, 104078, 104079, 104080, 104081, 104082, 104083, 104084, 104085, 104102, 104102, 104104, 104106, 104107, 104108, 104109, 104110, 104111, 104112, 104113, 104114, 104115, 104116, 104118, 104119, 104120, 104121, 104124, 104125, 104125, 104125, 104125, 104127, 104129, 104130, 104131, 104132, 104134, 104135, 104135, 104135, 104135, 104136, 104137, 104137, 104137, 104138, 104138, 104139, 104139, 104139, 104139, 104140, 104141, 104142, 104144, 104144, 104144, 104145, 104146, 104148, 104149, 104150, 104151, 104152, 104153, 104154, 104155, 104156, 104157, 104158, 104159, 104159, 104160, 104161, 104162, 104163, 104164, 104165, 104166, 104167, 104168, 104169, 104170, 104172, 104173, 104175, 104176, 104177, 104178, 104179, 104180, 104181, 104182, 104183, 104185, 104186, 104188, 104189, 104190, 104191, 104192, 104193, 104194, 104195, 104196, 104197, 104198, 104199, 104200, 104201, 104202, 104203, 104204, 104205, 104206, 104207, 104208, 104209, 104210, 104211, 104212, 104213, 105000, 105001, 105002, 105003, 105004, 105005, 105006, 105007, 105009, 105010, 105012, 105013, 105014, 105015, 105016, 105017, 105018, 105020, 106000, 106001, 106002, 106003, 106004, 106005, 106006, 106007, 106008, 106009, 106010, 106011, 106012, 106013, 106014, 106015, 106016, 106018, 107000, 107001, 107001, 107002, 108000, 108001, 108002, 108003, 108004, 108005, 108006, 109000, 109001, 110000, 110001, 110002, 110003, 110004, 110005, 110006, 110007, 110008, 110009, 110010, 110011, 200000, 200999, 202000, 202001, 202002, 202003, 202004, 202005, 202006, 202007, 202008, 202009, 202010, 202011, 202012, 202013, 203000, 203001, 203002, 203003, 203004, 203005, 203006, 203007, 203008, 203009, 203010, 203011, 203012, 203013, 203014, 203015, 203016, 203017, 203018, 203019, 203020, 203021, 203022, 203023, 203024, 203025, 203026, 203027, 203028, 203029, 203030, 203031, 203032, 203033, 203034, 203035, 203036, 203037, 203038, 203039, 203040, 203041, 203042, 203043, 203044, 203045, 203046, 203047, 203048, 203049, 203050, 203051, 203052, 203053, 203054, 203055, 203056, 203057, 203058, 203059, 203060, 203061, 203062, 203063, 203064, 203065, 203066, 203067, 203068, 203069, 203070, 203071, 203072, 203073, 203074, 203075, 203076, 203077, 203078, 203079, 203080, 203081, 203082, 203083, 203084, 203085, 203086, 203087, 203088, 203089, 203090, 203091, 203092, 203093, 203094, 203095, 203096, 203097, 203098, 203099, 203100, 203102, 203104, 203105, 203106, 203107, 203108, 203109, 203110, 203111, 203112, 203113, 203114, 203115, 203116, 203117, 203118, 203119, 203120, 203121, 203122, 203123, 203124, 203125, 203126, 203127, 203130, 203130, 203131, 203133, 203134, 203134, 203134, 203135, 203136, 203137, 203138, 203139, 203140, 203141, 203142, 203143, 203144, 203145, 203146, 203147, 203148, 203149, 203150, 203151, 203152, 203153, 203154, 203155, 203156, 203157, 203158, 203159, 203160, 203161, 203162, 203163, 203164, 203165, 203166, 203167, 203168, 203169, 203170, 203171, 203172, 203173, 203174, 203175, 203176, 203177, 203178, 203179, 203180, 203181, 203182, 203183, 203184, 203185, 203186, 203187, 203188, 203189, 203190, 203191, 203192, 203193, 203194, 203195, 203196, 203197, 203198, 203199, 203200, 203201, 203202, 203203, 203204, 203205, 204000, 204001, 204002, 204003, 204004, 204005, 204006, 204007, 204008, 204009, 204010, 204011, 204012, 204013, 204014, 204015, 204016, 204017, 204018, 204019, 204020, 204021, 204022, 204023, 204024, 204025, 204026, 204027, 204028, 204029, 204030, 204031, 204032, 204033, 204034, 204035, 204036, 204037, 204038, 204039, 204040, 204041, 204042, 204043, 204044, 204045, 204046, 204047, 204048, 204049, 204050, 204051, 204052, 204053, 204054, 204055, 204056, 204057, 204058, 204059, 204060, 204061, 204062, 204063, 204064, 204065, 204066, 204067, 204068, 204069, 204070, 204071, 204072, 204073, 204074, 204075, 204076, 204077, 204078, 204079, 204080, 204081, 204082, 204083, 204084, 204085, 204086, 204087, 204088, 204089, 204090, 204091, 204092, 204093, 204094, 204095, 204096, 204097, 204098, 204099, 204100, 204101, 204102, 204103, 204104, 204105, 204106, 204107, 204108, 204109, 204110, 204111, 204112, 204113, 204114, 204115, 204116, 204117, 204118, 204119, 204120, 204121, 204122, 204123, 204124, 204125, 204126, 204127, 204128, 204129, 204130, 204131, 204132, 204133, 204134, 204135, 204136, 204137, 204138, 204139, 204140, 204141, 204142, 204143, 204144, 204145, 204146, 204148, 204150, 204151, 204152, 204153, 204154, 204155, 204156, 204157, 204158, 204159, 204160, 204161, 204162, 204163, 204164, 204165, 204166, 204167, 204168, 204169, 204170, 204171, 204172, 204173, 204175, 204176, 204177, 204178, 204179, 204180, 204181, 204182, 204183, 204184, 204185, 204186, 204187, 204188, 204189, 204190, 204191, 204192, 204193, 204194, 204195, 204196, 204197, 204198, 204199, 204200, 204201, 204202, 204203, 204204, 204205, 204206, 204207, 204208, 204209, 204210, 204211, 204212, 204213, 204214, 204215, 204216, 204217, 204218, 204219, 205000, 205001, 205002, 205003, 205004, 205005, 205006, 205007, 205008, 205009, 205010, 205011, 205012, 205013, 205014, 205015, 205016, 205017, 205018, 205019, 205020, 205021, 205022, 205023, 205025, 205027, 205028, 205029, 205030, 205031, 205032, 205033, 205034, 205035, 205036, 205037, 205038, 205039, 205040, 205041, 205042, 205043, 205044, 205045, 205046, 205047, 205048, 205049, 205050, 205051, 205052, 205053, 205054, 205055, 205056, 205057, 205058, 205059, 205060, 205061, 205062, 206000, 206001, 206002, 206003, 206004, 206005, 206006, 206007, 206008, 206009, 206010, 206011, 206012, 206013, 206014, 206015, 206016, 206017, 206018, 206019, 206020, 206021, 206023, 206025, 206026, 206027, 206028, 206029, 206030, 206031, 206032, 206033, 206034, 206035, 206036, 206037, 206038, 206039, 206040, 206041, 206042, 206043, 206044, 206045, 206046, 206047, 206048, 206049, 206050, 206051, 206052, 206053, 206054, 206055, 206056, 206057, 206058, 206059, 206060, 206061, 206062, 206063, 206064, 206065, 206066, 207000, 207001, 207002, 207003, 207004, 207005, 207006, 207007, 207008, 207009, 207010, 207011, 207012, 207013, 207014, 207015, 207016, 207017, 207018, 207019, 207020, 207022, 207023, 207024, 207025, 207026, 207027, 207028, 207029, 207030, 207032, 207033, 207034, 207035, 207036, 207037, 207038, 207039, 207040, 207041, 207042, 207043, 207044, 207045, 207046, 207047, 207048, 207049, 207050, 207051, 207052, 207053, 207054, 207055, 207056, 207057, 207058, 207059, 207060, 207061, 207062, 208000, 208001, 208002, 208003, 208004, 208005, 208006, 208007, 208008, 208009, 208010, 208011, 208012, 208013, 208014, 208015, 208016, 208017, 208018, 208019, 208020, 208021, 208022, 208023, 208024, 208025, 208026, 208027, 208028, 208030, 208030, 208030, 208030, 208031, 208032, 208034, 208035, 208036, 208037, 208038, 208039, 208040, 208041, 208042, 208043, 208044, 208045, 208046, 208047, 208048, 208049, 208050, 208051, 209000, 209001, 209002, 209003, 209004, 209005, 209006, 209007, 209008, 209009, 209010, 209011, 209012, 209013, 209014, 209015, 209032, 209033, 209034, 209058, 209060, 209061, 209062, 209063, 209064, 209065, 209066, 209067, 209068, 209069, 209070, 209071, 209072, 209073, 209074, 210000, 210001, 210002, 210003, 210004, 210005, 210006, 210007, 210008, 210009, 210010, 210011, 210012, 210013, 210014, 210015, 210016, 210017, 210018, 210019, 210020, 210021, 210022, 210023, 210024, 210025, 210026, 210027, 210028, 210029, 210030, 210031, 210032, 210033, 210034, 210035, 210036, 210037, 210038, 210039, 210040, 210041, 210041, 210041, 210041, 210041, 210042, 210043, 210044, 210045, 210046, 210047, 210048, 210049, 210050, 210051, 210052, 210053, 210054, 210055, 210056, 210057, 210058, 210059, 210060, 210061, 210062, 211000, 211001, 211002, 211003, 211004, 211005, 211006, 211007, 211008, 211009, 211010, 211011, 211012, 211013, 211014, 211015, 211016, 211017, 211018, 211019, 211020, 211021, 211022, 211023, 211024, 211025, 211026, 211027, 211028, 211029, 211030, 211031, 211032, 211033, 211034, 211035, 211036, 211037, 211038, 211039, 211040, 211041, 211042, 211043, 211044, 212000, 212001, 212002, 212003, 212004, 213000, 213001, 213002, 213003, 213004, 213005, 214000, 214001, 214002, 214003, 214004, 214004, 214004, 215000, 215001, 215002, 215002, 215004, 215005, 215005, 215005, 215005, 215006, 215007, 215008, 215009, 215010, 215011, 216000, 216001, 216002, 216003, 216004, 216005, 216006, 216007, 216008, 216009, 216010, 216011, 216012, 216013, 216014, 216015, 216016, 216016, 216016, 216016, 216017, 216019, 216020, 216021, 216022, 216023, 216024, 216025, 216026, 216027, 216028, 216029, 216030, 216031, 216031, 216031, 216032, 216033, 216034, 216035, 216036, 216037, 216038, 216039, 216040, 216041, 216042, 216044, 216045, 216046, 216047, 216048, 216049, 216050, 216051, 216052, 216053, 216054, 216055, 216056, 216057, 216058, 216059, 216060, 216061, 216062, 216063, 216064, 216065, 216066, 216067, 216068, 216069, 216070, 216071, 216072, 216073, 216074, 216075, 216076, 216077, 216078, 216079, 216080, 216081, 216082, 216083, 216084, 216085, 216086, 216087, 216088, 216089, 216090, 216091, 216092, 216093, 216094, 300000, 300999, 301000, 301001, 301001, 301001, 301002, 301002, 301002, 301002, 301003, 301004, 301005, 301006, 301007, 301008, 301009, 301010, 301011, 301011, 301011, 301011, 301012, 301013, 301013, 301014, 301015, 301016, 301017, 301018, 301019, 301020, 301021, 301022, 301023, 301024, 301025, 301026, 301027, 301028, 301029, 301030, 301031, 301031, 301032, 301033, 301034, 301035, 301036, 301037, 301038, 301039, 301040, 301041, 301042, 301043, 301044, 301045, 301046, 301047, 301048, 301048, 301048, 301048, 301048, 301048, 301048, 301049, 301050, 301051, 301052, 301053, 301054, 301055, 301056, 301057, 301058, 301059, 301060, 301061, 301062, 301063, 301064, 301065, 301066, 301067, 301068, 301069, 301070, 301072, 301073, 301074, 301075, 301076, 301077, 301078, 302000, 302001, 302002, 302003, 302004, 302004, 302004, 302004, 302004, 302005, 302006, 302007, 302008, 302009, 302010, 302011, 302012, 302013, 302014, 302016, 302017, 302018, 400000, 400999, 401000, 401001, 401003, 401004, 401005, 401006, 401009, 401015, 401015, 401016, 401017, 401018, 402000, 402001, 402002, 402003, 402004, 402005, 402006, 402007, 500000, 500999, 501000, 501001, 501002, 501003, 501004, 501005, 501005, 501005, 501005, 501006, 501006, 501006, 501006, 501007, 501007, 501008, 501009, 501009, 501009, 501009, 502000, 502001, 502002, 502002, 502002, 502003, 502004, 502005, 502006, 600000, 600018, 600926, 600999, 601000, 601001, 601002, 601003, 601003, 601003, 601003, 601004, 601005, 601006, 601007, 601008, 602000, 602001, 602002, 602003, 603000, 603001, 603002, 603003, 603004, 603005, 603006, 603007, 603008, 603009, 603010, 604000, 604001, 604001, 604001, 604002, 605000, 606000, 606003, 606003, 606004, 606005, 606006, 606007, 606008, 606009, 607000, 607001, 607001, 607001, 608000, 608001, 608001, 608001, 608001, 608002, 608003, 608003, 608003, 608003, 608003, 609000, 609001, 609002, 609003, 609004, 609005, 609006, 609007, 609008, 609008, 609008, 609008, 609008, 609009, 609010, 609011, 609012, 609013, 609015, 609016, 609017, 609018, 609019, 609020, 609022, 609023, 609024, 609025, 609026, 609027, 609028, 609029, 609030, 609031, 609031, 609032, 609032, 609033, 609034, 609035, 609036, 609037, 609038, 609039, 609040, 609041, 609041, 609042, 609043, 609043, 609044, 609045, 609046, 609047, 609049, 609050, 609051, 609052, 609053, 609054, 609055, 609056, 609056, 609056, 609057, 609058, 609059, 609060, 609061, 609062, 609063, 609064, 609065, 609067, 609068, 609069, 609070, 609071, 609072, 609073, 609074, 609075, 609077, 609078, 609079, 609080, 609081, 609082, 609083, 609084, 609085, 609087, 609088, 609089, 609090, 609091, 609092, 609093, 609094, 609095, 609096, 609097, 609098, 609099, 609100, 609101, 609102, 609103, 609104, 609105, 609106, 609107, 609111, 609112, 609113, 609115, 609116, 609117, 609118, 609119, 609120, 609122, 609123, 609124, 609125, 609126, 609128, 609129, 609130, 609131, 609132, 609133, 609134, 609135, 609136, 609137, 609138, 609139, 609140, 609141, 609142, 609143, 609144, 609145] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{FreightChargeTypeIDSchemeAgencyIDContentType}{0..1} in type {FreightChargeTypeIDType}new: @schemeAgencyID{FreightChargeTypeIDSchemeAgencyIDContentType}{0..1} in type {FreightChargeTypeIDType}changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/ID/@schemeID removed @schemeID {token}{0..1} in type {FreightChargeTypeIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {FreightChargeTypeIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PayingPartyRoleCode modifying element: old: {ChargePayingPartyRoleCodeType}{0..1} in type {LogisticsServiceChargeType}new: {ChargePayingPartyRoleCodeType}{0..1} in type {LogisticsServiceChargeType}changed enumeration from [] to [AB, AE, AF, AH, AQ, AR, AT, AU, CA, CG, CN, CPD, CX, CZ, DGB, EX, FW, GS, IM, IV, PE] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PayingPartyRoleCode/@listAgencyID modifying attribute: old: @listAgencyID{ChargePayingPartyRoleCodeListAgencyIDContentType}{0..1} in type {ChargePayingPartyRoleCodeType}new: @listAgencyID{ChargePayingPartyRoleCodeListAgencyIDContentType}{0..1} in type {ChargePayingPartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PayingPartyRoleCode/@listID removed @listID {token}{0..1} in type {ChargePayingPartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PayingPartyRoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {ChargePayingPartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PayingPartyRoleCode/@name removed @name {string}{0..1} in type {ChargePayingPartyRoleCodeType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentArrangementCode modifying element: old: {CodeType}{0..1} in type {LogisticsServiceChargeType}new: {TransportServicePaymentArrangementCodeType}{0..1} in type {LogisticsServiceChargeType} changed type from CodeType to TransportServicePaymentArrangementCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentArrangementCode modifying element: old: {CodeType}{0..1} in type {LogisticsServiceChargeType}new: {TransportServicePaymentArrangementCodeType}{0..1} in type {LogisticsServiceChargeType} changed type from CodeType to TransportServicePaymentArrangementCodeTypechanged enumeration from [] to [A, B, C, P] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentArrangementCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentArrangementCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{TransportServicePaymentArrangementCodeListAgencyIDContentType}{0..1} in type {TransportServicePaymentArrangementCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to TransportServicePaymentArrangementCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentArrangementCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -11941,12 +14270,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/PhysicalGeographicalCoordinate/LatitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/PhysicalGeographicalCoordinate/LongitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/SubordinateLocation added {SubordinateLocationType}{0..1} in type {LogisticsLocationType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeTypechanged enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/TypeCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{LocationFunctionCodeListAgencyIDContentType}{0..1} in type {LocationFunctionCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to LocationFunctionCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/TypeCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -11956,6 +14286,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/PaymentPlaceLogisticsLocation/TypeCode/@name removed @name {string}{0..1} in type {CodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/TariffClassCode modifying element: old: {FreightChargeTariffClassCodeType}{0..1} in type {LogisticsServiceChargeType}new: {FreightChargeTariffClassCodeType}{0..1} in type {LogisticsServiceChargeType}changed enumeration from [] to [A, B, C, D, E, F, G, H, K, M, N, Q, R, S] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/TariffClassCode/@listAgencyID modifying attribute: old: @listAgencyID{FreightChargeTariffClassCodeListAgencyIDContentType}{0..1} in type {FreightChargeTariffClassCodeType}new: @listAgencyID{FreightChargeTariffClassCodeListAgencyIDContentType}{0..1} in type {FreightChargeTariffClassCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/TariffClassCode/@listID removed @listID {token}{0..1} in type {FreightChargeTariffClassCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedLogisticsServiceCharge/TariffClassCode/@listVersionID removed @listVersionID {token}{0..1} in type {FreightChargeTariffClassCodeType} @@ -11968,43 +14299,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -12013,17 +14354,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -12031,130 +14375,162 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/AssociatedReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/ConversionRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/SourceUnitBasisNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ActualTradeCurrencyExchange/TargetUnitBaseNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate/@format removed @format {string}{0..1} in type {RateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}new: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {TradeTaxType}new: {CurrencyCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}new: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@name removed @name {string}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/GrandTotalAmount added {AmountType}{0..*} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ServiceSupplyTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxBasisAllowanceRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}new: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listAgencyID modifying attribute: old: @listAgencyID{AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType}new: @listAgencyID{AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listVersionID removed @listVersionID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/TypeCode modifying element: old: {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/TypeCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeIdentificationCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeIdentificationCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AllowanceChargeIdentificationCodeType} @@ -12162,49 +14538,61 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/ApplicableTradePaymentPenaltyTerms/BasisPeriodMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/BillStartDateTime added {DateTimeType}{0..1} in type {TradePaymentTermsType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/DueDateTime added {FormattedDateTimeType}{0..1} in type {TradePaymentTermsType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/FromEventCode modifying element: old: {PaymentTermsEventTimeReferenceCodeType}{0..1} in type {TradePaymentTermsType}new: {PaymentTermsEventTimeReferenceCodeType}{0..1} in type {TradePaymentTermsType}changed enumeration from [] to [5, 24, 29, 45, 71] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/FromEventCode/@listAgencyID modifying attribute: old: @listAgencyID{PaymentTermsEventTimeReferenceCodeListAgencyIDContentType}{0..1} in type {PaymentTermsEventTimeReferenceCodeType}new: @listAgencyID{PaymentTermsEventTimeReferenceCodeListAgencyIDContentType}{0..1} in type {PaymentTermsEventTimeReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/FromEventCode/@listID removed @listID {token}{0..1} in type {PaymentTermsEventTimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/FromEventCode/@listVersionID removed @listVersionID {token}{0..1} in type {PaymentTermsEventTimeReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/ID modifying element: old: {PaymentTermsIDType}{0..1} in type {TradePaymentTermsType}new: {PaymentTermsIDType}{0..1} in type {TradePaymentTermsType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{PaymentTermsIDSchemeAgencyIDContentType}{0..1} in type {PaymentTermsIDType}new: @schemeAgencyID{PaymentTermsIDSchemeAgencyIDContentType}{0..1} in type {PaymentTermsIDType}changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/ID/@schemeID removed @schemeID {token}{0..1} in type {PaymentTermsIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {PaymentTermsIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -12213,17 +14601,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -12231,11 +14622,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/SettlementPeriodMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/TypeCode modifying element: old: {PaymentTermsTypeCodeType}{0..1} in type {TradePaymentTermsType}new: {PaymentTermsTypeCodeType}{0..1} in type {TradePaymentTermsType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{PaymentTermsTypeCodeListAgencyIDContentType}{0..1} in type {PaymentTermsTypeCodeType}new: @listAgencyID{PaymentTermsTypeCodeListAgencyIDContentType}{0..1} in type {PaymentTermsTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/TypeCode/@listID removed @listID {token}{0..1} in type {PaymentTermsTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradePaymentTerms/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {PaymentTermsTypeCodeType} @@ -12246,89 +14639,113 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeSettlementFinancialCard/ValidFromDateTime/DateTimeString/@format modifying attribute: old: @format{string}{0..1} in type {DateTimeType}new: @format{DateOnlyFormatCodeContentType}{0..1} in type {DateOnlyFormattedDateTimeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:codelist:standard:UNECE:DateOnlyFormatCode:D21B changed type from string to DateOnlyFormatCodeContentTypechanged enumeration from [] to [2, 3, 4, 101, 102, 105, 106, 107, 110, 609] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeSettlementFinancialCard/VerificationNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeSettlementLineMonetarySummation/IncludingTaxesLineTotalAmount added {AmountType}{0..*} in type {TradeSettlementLineMonetarySummationType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerNonDeductibleTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/BuyerRepayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/CalculatedRate/@format removed @format {string}{0..1} in type {RateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/CalculationSequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/CategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}new: @listAgencyID{TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/CategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {TaxCategoryCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/CurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {TradeTaxType}new: {CurrencyCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/CurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/CurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/CurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/CurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/DueDateTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}new: @listAgencyID{TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/DueDateTypeCode/@name removed @name {string}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/GrandTotalAmount added {AmountType}{0..*} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/PlaceApplicableTradeLocation/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeLocationType}new: {CountryIDType}{0..1} in type {TradeLocationType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/PlaceApplicableTradeLocation/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerPayableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SellerRefundableTaxSpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/ServiceSupplyTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/ServiceSupplyTradeCountry/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/ServiceSupplyTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/ServiceSupplyTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode modifying element: old: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAmountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listID removed @listID {token}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAmountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/AmountTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAmountTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode modifying element: old: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [105, 220, 223, 224, 245, 315, 320, 325, 326, 380, 389, 393, 394, 395, 398, 399, 455, 481, 533, 534, 640, 719, 731, 747] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listAgencyID modifying attribute: old: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}new: @listAgencyID{AccountingDocumentCodeListAgencyIDContentType}{0..1} in type {AccountingDocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listID removed @listID {token}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingDocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/SetTriggerCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingDocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/SpecifiedTradeAccountingAccount/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/TaxBasisAllowanceRate/@format removed @format {string}{0..1} in type {RateType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}new: @listAgencyID{TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SubtotalCalculatedTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -12342,43 +14759,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -12387,17 +14814,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -12405,22 +14835,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AdditionalReferenceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -12435,43 +14869,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ApplicableProductCharacteristic/ValueSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/AreaDensityMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BatchID added {IDType}{0..*} in type {TradeProductType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -12480,17 +14924,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -12498,6 +14945,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/BrandOwnerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -12511,43 +14959,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -12556,17 +15014,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -12574,22 +15035,26 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/CertificationEvidenceReferenceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -12625,12 +15090,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LatitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LongitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/SubordinateLocation added {SubordinateLocationType}{0..1} in type {LogisticsLocationType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeTypechanged enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{LocationFunctionCodeListAgencyIDContentType}{0..1} in type {LocationFunctionCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to LocationFunctionCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/PackagingSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -12649,12 +15115,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LatitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/PhysicalGeographicalCoordinate/LongitudeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/SubordinateLocation added {SubordinateLocationType}{0..1} in type {LogisticsLocationType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeType +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode modifying element: old: {CodeType}{0..1} in type {LogisticsLocationType}new: {LocationFunctionCodeType}{0..1} in type {LogisticsLocationType} changed type from CodeType to LocationFunctionCodeTypechanged enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@languageID removed @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{token}{0..1} in type {CodeType}new: @listAgencyID{LocationFunctionCodeListAgencyIDContentType}{0..1} in type {LocationFunctionCodeType} changed type namespace from http://www.w3.org/2001/XMLSchema to urn:un:unece:uncefact:data:standard:QualifiedDataType:100 changed type from token to LocationFunctionCodeListAgencyIDContentType changed fixed default from null to 6changed enumeration from [] to [6] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/IndividualTradeProductInstance/ProductionSupplyChainEvent/OccurrenceLogisticsLocation/TypeCode/@listAgencyName removed @listAgencyName {string}{0..1} in type {CodeType} @@ -12677,43 +15144,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -12722,17 +15199,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -12740,64 +15220,78 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/InspectionReferenceReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -12806,17 +15300,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -12824,6 +15321,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LegalRightsOwnerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -12833,6 +15331,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LinearSpatialDimension/DiameterMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {LinearUnitMeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LinearSpatialDimension/HeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LinearSpatialDimension/LengthMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LinearSpatialDimension/TypeCode modifying element: old: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}new: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LinearSpatialDimension/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}new: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LinearSpatialDimension/TypeCode/@listID removed @listID {token}{0..1} in type {DimensionTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/LinearSpatialDimension/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DimensionTypeCodeType} @@ -12847,43 +15346,53 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/EffectiveSpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/FormattedIssueDateTime/DateTimeString/@format modifying attribute: old: @format{FormattedDateTimeFormatContentType}{0..1} in type {FormattedDateTimeType}new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} changed type namespace from urn:un:unece:uncefact:data:standard:QualifiedDataType:100 to urn:un:unece:uncefact:codelist:standard:UNECE:TimePointFormatCode:D21B changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentTypechanged enumeration from [] to [102, 203, 205, 209, 502, 602] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IncludedNote added {NoteType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -12892,17 +15401,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -12910,64 +15422,78 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/IssuerTradeParty/URIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/ReferenceTypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}new: @listAgencyID{ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/ReferenceTypeCode/@name removed @name {string}{0..1} in type {ReferenceCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/StatusCode modifying element: old: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/StatusCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}new: @listAgencyID{DocumentStatusCodeListAgencyIDContentType}{0..1} in type {DocumentStatusCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/StatusCode/@listID removed @listID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/StatusCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/StatusCode/@name removed @name {string}{0..1} in type {DocumentStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}new: @listAgencyID{DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MSDSReferenceReferencedDocument/TypeCode/@name removed @name {string}{0..1} in type {DocumentCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/DirectTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/EmailURIUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/FaxUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/InstantMessagingUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/MobileTelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/SpecifiedNote/SubjectCode modifying element: old: {CodeType}{0..1} in type {NoteType}new: {CodeType}{0..*} in type {NoteType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TelexUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}new: @listAgencyID{ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TypeCode/@listID removed @listID {token}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ContactTypeCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/DefinedTradeContact/VOIPUniversalCommunication/ChannelCode/@listVersionID removed @listVersionID {token}{0..1} in type {CommunicationChannelCodeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/EndPointURIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/EndPointURIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -12976,17 +15502,20 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/LogoAssociatedSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/LogoAssociatedSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType}changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/RoleCode/@listAgencyID modifying attribute: old: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}new: @listAgencyID{PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/RoleCode/@listID removed @listID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/RoleCode/@listVersionID removed @listVersionID {token}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/RoleCode/@name removed @name {string}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -12994,6 +15523,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/SpecifiedLogisticsLocation added {LogisticsLocationType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/SpecifiedTaxRegistration/IOSSID added {IDType}{0..1} in type {TaxRegistrationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/TypeCode added {CodeType}{0..*} in type {TradePartyType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/URIUniversalCommunication/ChannelCode modifying element: old: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}new: {CommunicationChannelCodeType}{0..1} in type {UniversalCommunicationType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, CA, EI, EM, EX, FT, FX, GM, IE, IM, MA, PB, PS, SW, TE, TG, TL, TM, TT, TX, XF, XG, XH, XI, XJ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/URIUniversalCommunication/ChannelCode/@listAgencyID modifying attribute: old: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}new: @listAgencyID{CommunicationChannelCodeListAgencyIDContentType}{0..1} in type {CommunicationChannelCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/URIUniversalCommunication/ChannelCode/@listID removed @listID {token}{0..1} in type {CommunicationChannelCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ManufacturerTradeParty/URIUniversalCommunication/ChannelCode/@listURI removed @listURI {anyURI}{0..1} in type {CommunicationChannelCodeType} @@ -13002,6 +15532,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MaximumLinearSpatialDimension/DiameterMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {LinearUnitMeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MaximumLinearSpatialDimension/HeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MaximumLinearSpatialDimension/LengthMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MaximumLinearSpatialDimension/TypeCode modifying element: old: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}new: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MaximumLinearSpatialDimension/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}new: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MaximumLinearSpatialDimension/TypeCode/@listID removed @listID {token}{0..1} in type {DimensionTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MaximumLinearSpatialDimension/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DimensionTypeCodeType} @@ -13012,6 +15543,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MinimumLinearSpatialDimension/DiameterMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {LinearUnitMeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MinimumLinearSpatialDimension/HeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MinimumLinearSpatialDimension/LengthMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MinimumLinearSpatialDimension/TypeCode modifying element: old: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}new: {DimensionTypeCodeType}{0..1} in type {SpatialDimensionType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MinimumLinearSpatialDimension/TypeCode/@listAgencyID modifying attribute: old: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}new: @listAgencyID{DimensionTypeCodeListAgencyIDContentType}{0..1} in type {DimensionTypeCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MinimumLinearSpatialDimension/TypeCode/@listID removed @listID {token}{0..1} in type {DimensionTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/MinimumLinearSpatialDimension/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DimensionTypeCodeType} @@ -13022,6 +15554,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/ModelName added {TextType}{0..1} in type {TradeProductType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/NetVolumeMeasure added {MeasureType}{0..1} in type {TradeProductType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/NetWeightMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID/@schemeAgencyID modifying attribute: old: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}new: @schemeAgencyID{CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType}changed enumeration from [] to [5] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -13036,6 +15569,7 @@ /CrossIndustryInvoice/ValuationBreakdownStatement/CreationSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/DurationMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} /CrossIndustryInvoice/ValuationBreakdownStatement/CreationSpecifiedBinaryFile/AccessAvailabilitySpecifiedPeriod/SequenceNumeric/@format removed @format {string}{0..1} in type {NumericType} /CrossIndustryInvoice/ValuationBreakdownStatement/CreationSpecifiedBinaryFile/SizeMeasure/@unitCodeListVersionID removed @unitCodeListVersionID {token}{0..1} in type {MeasureType} +/CrossIndustryInvoice/ValuationBreakdownStatement/DefaultCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {ValuationBreakdownStatementType}new: {CurrencyCodeType}{1..1} in type {ValuationBreakdownStatementType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/ValuationBreakdownStatement/DefaultCurrencyCode/@listAgencyID modifying attribute: old: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}new: @listAgencyID{CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType}changed enumeration from [] to [5] (no semantic change, as new single enumeration value existed as previous fixed default: 5) /CrossIndustryInvoice/ValuationBreakdownStatement/DefaultCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/ValuationBreakdownStatement/DefaultCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} diff --git a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC-WL.txt b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC-WL.txt index 4ef4c8b..6944a7b 100644 --- a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC-WL.txt +++ b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC-WL.txt @@ -70,6 +70,8 @@ Modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [AE, E, G, K, L, M, O, S, Z] + added: [AE, E, G, K, L, M, O, S, Z] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode @@ -101,6 +103,8 @@ Modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType} new: {CountryIDType}{1..1} in type {TradeAddressType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] + added: [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID @@ -129,6 +133,14 @@ Modifying element: Changed cardinality from 0..* to 0..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/DirectDebitMandateID +Modifying element: + old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + Changed enumeration from [] to [5, 29, 72] + added: [5, 29, 72] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + Modifying element: old: {AmountType}{0..*} in type {TradeSettlementHeaderMonetarySummationType} new: {AmountType}{1..1} in type {TradeSettlementHeaderMonetarySummationType} @@ -174,6 +186,8 @@ Modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} new: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode Modifying element: @@ -203,6 +217,13 @@ Modifying element: Changed cardinality from 0..* to 0..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentReference +Modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + Changed enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] + added: [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode + Modifying element: old: {TradeAccountingAccountType}{0..*} in type {HeaderTradeSettlementType} new: {TradeAccountingAccountType}{0..1} in type {HeaderTradeSettlementType} @@ -249,6 +270,13 @@ Modifying element: Changed cardinality from 0..* to 1..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementHeaderMonetarySummation/TaxBasisTotalAmount +Modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode + Modifying element: old: {AmountType}{0..*} in type {TradeSettlementHeaderMonetarySummationType} new: {AmountType}{0..2} in type {TradeSettlementHeaderMonetarySummationType} @@ -265,18 +293,24 @@ Modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} new: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] + added: [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] at /CrossIndustryInvoice/ExchangedDocument/TypeCode Modifying element: old: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} new: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [10, 20, 30, 42, 48, 49, 57, 58, 59, 97, ZZZ] + added: [10, 20, 30, 42, 48, 49, 57, 58, 59, 97, ZZZ] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode Modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType} new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [VAT] + added: [VAT] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode @@ -1716,8 +1750,8 @@ ELEMENTS: Added elements in XSD: 0 Added elements in XML: 0 - Modified elements in XSD: 41 - Modified elements in XML: 73 + Modified elements in XSD: 44 + Modified elements in XML: 77 Removed elements from XSD: 222 Removed elements from XML: 402 diff --git a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC-WL_onlyRestrictionsReport.txt b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC-WL_onlyRestrictionsReport.txt index 31560e9..d2f4ab5 100644 --- a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC-WL_onlyRestrictionsReport.txt +++ b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC-WL_onlyRestrictionsReport.txt @@ -62,6 +62,7 @@ In type {ExchangedDocumentType} modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} new: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] In type {ExchangedDocumentType} removed {CodeType}{0..1} In type {ExchangedDocumentType} removed {IndicatorType}{0..1} In type {ExchangedDocumentType} removed {IndicatorType}{0..1} @@ -129,6 +130,7 @@ In type {HeaderTradeSettlementType} modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} new: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] In type {HeaderTradeSettlementType} modifying element: old: {TextType}{0..*} in type {HeaderTradeSettlementType} new: {TextType}{0..1} in type {HeaderTradeSettlementType} @@ -149,6 +151,10 @@ In type {HeaderTradeSettlementType} modifying element: old: {TradeSettlementPaymentMeansType}{0..*} in type {HeaderTradeSettlementType} new: {TradeSettlementPaymentMeansType}{0..1} in type {HeaderTradeSettlementType} Restricted cardinality from 0..* to 0..1 +In type {HeaderTradeSettlementType} modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + New restriction by enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] In type {HeaderTradeSettlementType} removed {TextType}{0..*} In type {HeaderTradeSettlementType} removed {CodeType}{0..1} In type {HeaderTradeSettlementType} removed {IDType}{0..*} @@ -274,6 +280,7 @@ In type {TradeAddressType} modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType} new: {CountryIDType}{1..1} in type {TradeAddressType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] In type {TradeAddressType} modifying element: old: {TextType}{0..*} in type {TradeAddressType} new: {TextType}{0..1} in type {TradeAddressType} @@ -304,6 +311,10 @@ In type {TradeAllowanceChargeType} modifying element: old: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} new: {IndicatorType}{1..1} in type {TradeAllowanceChargeType} Restricted cardinality from 0..1 to 1..1 +In type {TradeAllowanceChargeType} modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + New restriction by enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] In type {TradeAllowanceChargeType} removed {TradeCurrencyExchangeType}{0..1} In type {TradeAllowanceChargeType} removed {QuantityType}{0..1} In type {TradeAllowanceChargeType} removed {IDType}{0..1} @@ -390,6 +401,7 @@ In type {TradeSettlementPaymentMeansType} modifying element: old: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} new: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [10, 20, 30, 42, 48, 49, 57, 58, 59, 97, ZZZ] In type {TradeSettlementPaymentMeansType} removed {TradeSettlementFinancialCardType}{0..1} In type {TradeSettlementPaymentMeansType} removed {PaymentGuaranteeMeansCodeType}{0..1} In type {TradeSettlementPaymentMeansType} removed {IDType}{0..*} @@ -410,10 +422,16 @@ In type {TradeTaxType} modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [AE, E, G, K, L, M, O, S, Z] +In type {TradeTaxType} modifying element: + old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + New restriction by enumeration from [] to [5, 29, 72] In type {TradeTaxType} modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType} new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [VAT] In type {TradeTaxType} removed {AmountType}{0..*} In type {TradeTaxType} removed {QuantityType}{0..1} In type {TradeTaxType} removed {TradeAccountingAccountType}{0..1} diff --git a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC-WL_singleLineReport.txt b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC-WL_singleLineReport.txt index 8c4d941..c301f3c 100644 --- a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC-WL_singleLineReport.txt +++ b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC-WL_singleLineReport.txt @@ -34,7 +34,7 @@ /CrossIndustryInvoice/ExchangedDocument/PurposeCode removed {MessageFunctionCodeType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/RevisionDateTime removed {DateTimeType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/RevisionID removed {IDType}{0..1} in type {ExchangedDocumentType} -/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -127,7 +127,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -251,7 +251,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -340,7 +340,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -478,7 +478,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -553,7 +553,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AE, E, G, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -561,6 +561,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -588,7 +589,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TaxBasisAllowanceRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TaxPointDate removed {DateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -625,7 +626,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument removed {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument removed {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange removed {TradeCurrencyExchangeType}{0..1} in type {HeaderTradeSettlementType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listAgencyID removed @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} @@ -687,7 +688,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -791,7 +792,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AE, E, G, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -799,6 +800,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -826,7 +828,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxBasisAllowanceRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate removed {DateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -838,6 +840,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/PrepaidIndicator removed {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listAgencyID removed @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeReasonCodeType} @@ -929,12 +932,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PayerSpecifiedDebtorFinancialInstitution removed {DebtorFinancialInstitutionType}{0..1} in type {TradeSettlementPaymentMeansType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PaymentChannelCode removed {PaymentMeansChannelCodeType}{0..1} in type {TradeSettlementPaymentMeansType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PaymentMethodCode removed {CodeType}{0..1} in type {TradeSettlementPaymentMeansType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode modifying element: old: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType}new: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode modifying element: old: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType}new: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [10, 20, 30, 42, 48, 49, 57, 58, 59, 97, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode/@listAgencyID removed @listAgencyID {PaymentMeansCodeListAgencyIDContentType}{0..1} in type {PaymentMeansCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode/@listID removed @listID {token}{0..1} in type {PaymentMeansCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {PaymentMeansCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax removed {TradeTaxType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange removed {TradeCurrencyExchangeType}{0..1} in type {HeaderTradeSettlementType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode/@listAgencyID removed @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} diff --git a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC.txt b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC.txt index 0ca9657..73f842f 100644 --- a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC.txt +++ b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC.txt @@ -102,6 +102,8 @@ Modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [AE, E, G, K, L, M, O, S, Z] + added: [AE, E, G, K, L, M, O, S, Z] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode @@ -151,6 +153,8 @@ Modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType} new: {CountryIDType}{1..1} in type {TradeAddressType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] + added: [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID @@ -179,6 +183,18 @@ Modifying element: Changed cardinality from 0..* to 0..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/DirectDebitMandateID +Modifying element: + old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + Changed enumeration from [] to [5, 29, 72] + added: [5, 29, 72] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + Modifying element: old: {AmountType}{0..*} in type {TradeSettlementHeaderMonetarySummationType} new: {AmountType}{1..1} in type {TradeSettlementHeaderMonetarySummationType} @@ -236,6 +252,8 @@ Modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} new: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode Modifying element: @@ -289,6 +307,16 @@ Modifying element: Changed cardinality from 0..* to 0..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentReference +Modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + Changed enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] + added: [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode + Modifying element: old: {TradeAccountingAccountType}{0..*} in type {HeaderTradeSettlementType} new: {TradeAccountingAccountType}{0..1} in type {HeaderTradeSettlementType} @@ -359,6 +387,13 @@ Modifying element: Changed cardinality from 0..* to 1..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementHeaderMonetarySummation/TaxBasisTotalAmount +Modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode + Modifying element: old: {AmountType}{0..*} in type {TradeSettlementHeaderMonetarySummationType} new: {AmountType}{0..2} in type {TradeSettlementHeaderMonetarySummationType} @@ -375,18 +410,24 @@ Modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} new: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] + added: [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] at /CrossIndustryInvoice/ExchangedDocument/TypeCode Modifying element: old: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} new: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [10, 20, 30, 42, 48, 49, 57, 58, 59, 97, ZZZ] + added: [10, 20, 30, 42, 48, 49, 57, 58, 59, 97, ZZZ] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode Modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType} new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [VAT] + added: [VAT] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode @@ -2515,8 +2556,8 @@ ELEMENTS: Added elements in XSD: 0 Added elements in XML: 0 - Modified elements in XSD: 55 - Modified elements in XML: 115 + Modified elements in XSD: 58 + Modified elements in XML: 126 Removed elements from XSD: 346 Removed elements from XML: 665 diff --git a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC_onlyRestrictionsReport.txt b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC_onlyRestrictionsReport.txt index ae47d2e..a852275 100644 --- a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC_onlyRestrictionsReport.txt +++ b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC_onlyRestrictionsReport.txt @@ -73,6 +73,7 @@ In type {ExchangedDocumentType} modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} new: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] In type {ExchangedDocumentType} removed {CodeType}{0..1} In type {ExchangedDocumentType} removed {IndicatorType}{0..1} In type {ExchangedDocumentType} removed {IndicatorType}{0..1} @@ -140,6 +141,7 @@ In type {HeaderTradeSettlementType} modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} new: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] In type {HeaderTradeSettlementType} modifying element: old: {TextType}{0..*} in type {HeaderTradeSettlementType} new: {TextType}{0..1} in type {HeaderTradeSettlementType} @@ -160,6 +162,10 @@ In type {HeaderTradeSettlementType} modifying element: old: {TradeSettlementPaymentMeansType}{0..*} in type {HeaderTradeSettlementType} new: {TradeSettlementPaymentMeansType}{0..1} in type {HeaderTradeSettlementType} Restricted cardinality from 0..* to 0..1 +In type {HeaderTradeSettlementType} modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + New restriction by enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] In type {HeaderTradeSettlementType} removed {TextType}{0..*} In type {HeaderTradeSettlementType} removed {CodeType}{0..1} In type {HeaderTradeSettlementType} removed {IDType}{0..*} @@ -378,6 +384,7 @@ In type {TradeAddressType} modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType} new: {CountryIDType}{1..1} in type {TradeAddressType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] In type {TradeAddressType} modifying element: old: {TextType}{0..*} in type {TradeAddressType} new: {TextType}{0..1} in type {TradeAddressType} @@ -408,6 +415,10 @@ In type {TradeAllowanceChargeType} modifying element: old: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} new: {IndicatorType}{1..1} in type {TradeAllowanceChargeType} Restricted cardinality from 0..1 to 1..1 +In type {TradeAllowanceChargeType} modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + New restriction by enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] In type {TradeAllowanceChargeType} removed {TradeCurrencyExchangeType}{0..1} In type {TradeAllowanceChargeType} removed {QuantityType}{0..1} In type {TradeAllowanceChargeType} removed {IDType}{0..1} @@ -573,6 +584,7 @@ In type {TradeSettlementPaymentMeansType} modifying element: old: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} new: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [10, 20, 30, 42, 48, 49, 57, 58, 59, 97, ZZZ] In type {TradeSettlementPaymentMeansType} removed {TradeSettlementFinancialCardType}{0..1} In type {TradeSettlementPaymentMeansType} removed {PaymentGuaranteeMeansCodeType}{0..1} In type {TradeSettlementPaymentMeansType} removed {IDType}{0..*} @@ -593,10 +605,16 @@ In type {TradeTaxType} modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [AE, E, G, K, L, M, O, S, Z] +In type {TradeTaxType} modifying element: + old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + New restriction by enumeration from [] to [5, 29, 72] In type {TradeTaxType} modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType} new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [VAT] In type {TradeTaxType} removed {AmountType}{0..*} In type {TradeTaxType} removed {QuantityType}{0..1} In type {TradeTaxType} removed {TradeAccountingAccountType}{0..1} diff --git a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC_singleLineReport.txt b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC_singleLineReport.txt index ed83962..fe43053 100644 --- a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC_singleLineReport.txt +++ b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_BASIC_singleLineReport.txt @@ -34,7 +34,7 @@ /CrossIndustryInvoice/ExchangedDocument/PurposeCode removed {MessageFunctionCodeType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/RevisionDateTime removed {DateTimeType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/RevisionID removed {IDType}{0..1} in type {ExchangedDocumentType} -/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -127,7 +127,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -251,7 +251,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -340,7 +340,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -478,7 +478,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -553,7 +553,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AE, E, G, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -561,6 +561,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -588,7 +589,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TaxBasisAllowanceRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TaxPointDate removed {DateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -625,7 +626,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument removed {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument removed {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange removed {TradeCurrencyExchangeType}{0..1} in type {HeaderTradeSettlementType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listAgencyID removed @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} @@ -687,7 +688,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -791,7 +792,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AE, E, G, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -799,6 +800,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -826,7 +828,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxBasisAllowanceRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate removed {DateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -838,6 +840,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/PrepaidIndicator removed {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listAgencyID removed @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeReasonCodeType} @@ -929,12 +932,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PayerSpecifiedDebtorFinancialInstitution removed {DebtorFinancialInstitutionType}{0..1} in type {TradeSettlementPaymentMeansType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PaymentChannelCode removed {PaymentMeansChannelCodeType}{0..1} in type {TradeSettlementPaymentMeansType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PaymentMethodCode removed {CodeType}{0..1} in type {TradeSettlementPaymentMeansType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode modifying element: old: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType}new: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode modifying element: old: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType}new: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [10, 20, 30, 42, 48, 49, 57, 58, 59, 97, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode/@listAgencyID removed @listAgencyID {PaymentMeansCodeListAgencyIDContentType}{0..1} in type {PaymentMeansCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode/@listID removed @listID {token}{0..1} in type {PaymentMeansCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {PaymentMeansCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax removed {TradeTaxType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange removed {TradeCurrencyExchangeType}{0..1} in type {HeaderTradeSettlementType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode/@listAgencyID removed @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} @@ -996,7 +1000,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AE, E, G, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -1004,6 +1008,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -1031,7 +1036,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxBasisAllowanceRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate removed {DateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -1043,6 +1048,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/PrepaidIndicator removed {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listAgencyID removed @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeReasonCodeType} @@ -1088,7 +1094,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AE, E, G, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -1096,6 +1102,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -1123,7 +1130,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxBasisAllowanceRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate removed {DateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -1135,6 +1142,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/PrepaidIndicator removed {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listAgencyID removed @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeReasonCodeType} @@ -1207,7 +1215,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AE, E, G, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -1215,6 +1223,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -1242,7 +1251,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TaxBasisAllowanceRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TaxPointDate removed {DateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -1292,7 +1301,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AE, E, G, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -1300,6 +1309,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -1327,7 +1337,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxBasisAllowanceRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate removed {DateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -1339,6 +1349,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/PrepaidIndicator removed {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listAgencyID removed @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeReasonCodeType} diff --git a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EN16931.txt b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EN16931.txt index 732668d..6ebded3 100644 --- a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EN16931.txt +++ b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EN16931.txt @@ -172,6 +172,8 @@ Modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [AE, E, G, K, L, M, O, S, Z] + added: [AE, E, G, K, L, M, O, S, Z] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode @@ -221,6 +223,8 @@ Modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType} new: {CountryIDType}{1..1} in type {TradeAddressType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] + added: [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID @@ -275,6 +279,18 @@ Modifying element: Changed cardinality from 0..* to 0..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/DirectDebitMandateID +Modifying element: + old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + Changed enumeration from [] to [5, 29, 72] + added: [5, 29, 72] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + Modifying element: old: {AmountType}{0..*} in type {TradeSettlementHeaderMonetarySummationType} new: {AmountType}{1..1} in type {TradeSettlementHeaderMonetarySummationType} @@ -299,6 +315,13 @@ Modifying element: Changed cardinality from 0..1 to 1..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PayerPartyDebtorFinancialAccount/IBANID +Modifying element: + old: {CountryIDType}{0..1} in type {TradeCountryType} + new: {CountryIDType}{0..1} in type {TradeCountryType} + Changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] + added: [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID + Modifying element: old: {IDType}{0..1} in type {DocumentContextParameterType} new: {IDType}{1..1} in type {DocumentContextParameterType} @@ -344,6 +367,8 @@ Modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} new: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode Modifying element: @@ -402,6 +427,16 @@ Modifying element: Changed cardinality from 0..* to 0..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentReference +Modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + Changed enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] + added: [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode + Modifying element: old: {TradeAccountingAccountType}{0..*} in type {HeaderTradeSettlementType} new: {TradeAccountingAccountType}{0..1} in type {HeaderTradeSettlementType} @@ -414,6 +449,21 @@ Modifying element: Changed cardinality from 0..* to 0..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount +Modifying element: + old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + Changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] + added: [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode + Modifying element: old: {AmountType}{0..*} in type {TradeSettlementHeaderMonetarySummationType} new: {AmountType}{0..1} in type {TradeSettlementHeaderMonetarySummationType} @@ -484,6 +534,13 @@ Modifying element: Changed cardinality from 0..* to 1..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementHeaderMonetarySummation/TaxBasisTotalAmount +Modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode + Modifying element: old: {AmountType}{0..*} in type {TradeSettlementHeaderMonetarySummationType} new: {AmountType}{0..2} in type {TradeSettlementHeaderMonetarySummationType} @@ -500,18 +557,39 @@ Modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} new: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] + added: [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] at /CrossIndustryInvoice/ExchangedDocument/TypeCode +Modifying element: + old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType} + new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType} + Changed enumeration from [] to [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] + added: [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode + Modifying element: old: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} new: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96, 97, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96, 97, ZZZ] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode Modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType} new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] + added: [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode @@ -3289,8 +3367,8 @@ ELEMENTS: Added elements in XSD: 0 Added elements in XML: 0 - Modified elements in XSD: 65 - Modified elements in XML: 142 + Modified elements in XSD: 71 + Modified elements in XML: 172 Removed elements from XSD: 388 Removed elements from XML: 794 diff --git a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EN16931_onlyRestrictionsReport.txt b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EN16931_onlyRestrictionsReport.txt index 3f299fa..13e13b5 100644 --- a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EN16931_onlyRestrictionsReport.txt +++ b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EN16931_onlyRestrictionsReport.txt @@ -117,6 +117,7 @@ In type {ExchangedDocumentType} modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} new: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] In type {ExchangedDocumentType} removed {CodeType}{0..1} In type {ExchangedDocumentType} removed {IndicatorType}{0..1} In type {ExchangedDocumentType} removed {IndicatorType}{0..1} @@ -180,6 +181,7 @@ In type {HeaderTradeSettlementType} modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} new: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] In type {HeaderTradeSettlementType} modifying element: old: {TextType}{0..*} in type {HeaderTradeSettlementType} new: {TextType}{0..1} in type {HeaderTradeSettlementType} @@ -200,6 +202,10 @@ In type {HeaderTradeSettlementType} modifying element: old: {TradeSettlementPaymentMeansType}{0..*} in type {HeaderTradeSettlementType} new: {TradeSettlementPaymentMeansType}{0..1} in type {HeaderTradeSettlementType} Restricted cardinality from 0..* to 0..1 +In type {HeaderTradeSettlementType} modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + New restriction by enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] In type {HeaderTradeSettlementType} removed {TextType}{0..*} In type {HeaderTradeSettlementType} removed {CodeType}{0..1} In type {HeaderTradeSettlementType} removed {IDType}{0..*} @@ -370,6 +376,14 @@ In type {ReferencedDocumentType} modifying element: old: {TextType}{0..*} in type {ReferencedDocumentType} new: {TextType}{0..1} in type {ReferencedDocumentType} Restricted cardinality from 0..* to 0..1 +In type {ReferencedDocumentType} modifying element: + old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + New restriction by enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] +In type {ReferencedDocumentType} modifying element: + old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType} + new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType} + New restriction by enumeration from [] to [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] In type {ReferencedDocumentType} removed {SpecifiedBinaryFileType}{0..*} In type {ReferencedDocumentType} removed {IndicatorType}{0..1} In type {ReferencedDocumentType} removed {SpecifiedPeriodType}{0..1} @@ -451,6 +465,7 @@ In type {TradeAddressType} modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType} new: {CountryIDType}{1..1} in type {TradeAddressType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] In type {TradeAddressType} modifying element: old: {TextType}{0..*} in type {TradeAddressType} new: {TextType}{0..1} in type {TradeAddressType} @@ -481,6 +496,10 @@ In type {TradeAllowanceChargeType} modifying element: old: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} new: {IndicatorType}{1..1} in type {TradeAllowanceChargeType} Restricted cardinality from 0..1 to 1..1 +In type {TradeAllowanceChargeType} modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + New restriction by enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] In type {TradeAllowanceChargeType} removed {TradeCurrencyExchangeType}{0..1} In type {TradeAllowanceChargeType} removed {QuantityType}{0..1} In type {TradeAllowanceChargeType} removed {IDType}{0..1} @@ -501,6 +520,10 @@ In type {TradeContactType} removed {NoteType}{0..*} In type {TradeContactType} removed {UniversalCommunicationType}{0..1} In type {TradeContactType} removed {ContactTypeCodeType}{0..1} In type {TradeContactType} removed {UniversalCommunicationType}{0..1} +In type {TradeCountryType} modifying element: + old: {CountryIDType}{0..1} in type {TradeCountryType} + new: {CountryIDType}{0..1} in type {TradeCountryType} + New restriction by enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] In type {TradeCountryType} removed {TextType}{0..*} In type {TradeCountryType} removed {TradeCountrySubDivisionType}{0..*} In type {TradePartyType} modifying element: @@ -682,6 +705,7 @@ In type {TradeSettlementPaymentMeansType} modifying element: old: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} new: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96, 97, ZZZ] In type {TradeSettlementPaymentMeansType} removed {PaymentGuaranteeMeansCodeType}{0..1} In type {TradeSettlementPaymentMeansType} removed {IDType}{0..*} In type {TradeSettlementPaymentMeansType} removed {DebtorFinancialInstitutionType}{0..1} @@ -699,10 +723,16 @@ In type {TradeTaxType} modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [AE, E, G, K, L, M, O, S, Z] +In type {TradeTaxType} modifying element: + old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + New restriction by enumeration from [] to [5, 29, 72] In type {TradeTaxType} modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType} new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] In type {TradeTaxType} removed {AmountType}{0..*} In type {TradeTaxType} removed {QuantityType}{0..1} In type {TradeTaxType} removed {TradeAccountingAccountType}{0..1} diff --git a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EN16931_singleLineReport.txt b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EN16931_singleLineReport.txt index ca77bef..0bc3099 100644 --- a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EN16931_singleLineReport.txt +++ b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EN16931_singleLineReport.txt @@ -32,7 +32,7 @@ /CrossIndustryInvoice/ExchangedDocument/PurposeCode removed {MessageFunctionCodeType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/RevisionDateTime removed {DateTimeType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/RevisionID removed {IDType}{0..1} in type {ExchangedDocumentType} -/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -96,6 +96,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -103,6 +104,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -147,6 +149,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -154,6 +157,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -233,7 +237,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -323,6 +327,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -330,6 +335,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -382,6 +388,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -389,6 +396,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -463,7 +471,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -587,7 +595,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -706,6 +714,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -713,6 +722,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -756,6 +766,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -763,6 +774,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -839,7 +851,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -912,7 +924,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AE, E, G, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -920,6 +932,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -946,7 +959,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TaxPointDate/Date removed {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{0..1} in type {DateType}new: @format{string}{1..1} in type {DateType} changed cardinality from 0..1 to 1..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -983,7 +996,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument removed {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument removed {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange removed {TradeCurrencyExchangeType}{0..1} in type {HeaderTradeSettlementType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listAgencyID removed @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} @@ -1020,6 +1033,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -1027,6 +1041,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -1106,7 +1121,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -1208,7 +1223,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AE, E, G, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -1216,6 +1231,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -1242,7 +1258,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/Date removed {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{0..1} in type {DateType}new: @format{string}{1..1} in type {DateType} changed cardinality from 0..1 to 1..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -1254,6 +1270,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/PrepaidIndicator removed {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listAgencyID removed @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeReasonCodeType} @@ -1399,12 +1416,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PayerSpecifiedDebtorFinancialInstitution removed {DebtorFinancialInstitutionType}{0..1} in type {TradeSettlementPaymentMeansType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PaymentChannelCode removed {PaymentMeansChannelCodeType}{0..1} in type {TradeSettlementPaymentMeansType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PaymentMethodCode removed {CodeType}{0..1} in type {TradeSettlementPaymentMeansType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode modifying element: old: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType}new: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode modifying element: old: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType}new: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96, 97, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode/@listAgencyID removed @listAgencyID {PaymentMeansCodeListAgencyIDContentType}{0..1} in type {PaymentMeansCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode/@listID removed @listID {token}{0..1} in type {PaymentMeansCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {PaymentMeansCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax removed {TradeTaxType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange removed {TradeCurrencyExchangeType}{0..1} in type {HeaderTradeSettlementType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode/@listAgencyID removed @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} @@ -1470,6 +1488,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -1477,6 +1496,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -1511,7 +1531,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AE, E, G, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -1519,6 +1539,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -1545,7 +1566,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/Date removed {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{0..1} in type {DateType}new: @format{string}{1..1} in type {DateType} changed cardinality from 0..1 to 1..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -1557,6 +1578,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/PrepaidIndicator removed {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listAgencyID removed @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeReasonCodeType} @@ -1602,7 +1624,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AE, E, G, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -1610,6 +1632,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -1636,7 +1659,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/Date removed {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{0..1} in type {DateType}new: @format{string}{1..1} in type {DateType} changed cardinality from 0..1 to 1..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -1648,6 +1671,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/PrepaidIndicator removed {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listAgencyID removed @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeReasonCodeType} @@ -1738,6 +1762,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -1745,6 +1770,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -1768,7 +1794,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AE, E, G, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -1776,6 +1802,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -1802,7 +1829,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TaxPointDate/Date removed {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{0..1} in type {DateType}new: @format{string}{1..1} in type {DateType} changed cardinality from 0..1 to 1..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -1863,7 +1890,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AE, E, G, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -1871,6 +1898,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -1897,7 +1925,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/Date removed {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{0..1} in type {DateType}new: @format{string}{1..1} in type {DateType} changed cardinality from 0..1 to 1..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -1909,6 +1937,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/PrepaidIndicator removed {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listAgencyID removed @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeReasonCodeType} @@ -2011,6 +2040,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/NetWeightMeasure removed {MeasureType}{0..1} in type {TradeProductType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} diff --git a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EXTENDED.txt b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EXTENDED.txt index b47ec6c..f28294f 100644 --- a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EXTENDED.txt +++ b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EXTENDED.txt @@ -252,6 +252,8 @@ Modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] + added: [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CategoryCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode @@ -317,6 +319,8 @@ Modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType} new: {CountryIDType}{1..1} in type {TradeAddressType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] + added: [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CountryID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID @@ -356,6 +360,8 @@ Modifying element: old: {DeliveryTermsCodeType}{0..1} in type {TradeDeliveryTermsType} new: {DeliveryTermsCodeType}{1..1} in type {TradeDeliveryTermsType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [1, 2, CFR, CIF, CIP, CPT, DAP, DAT, DDP, EXW, FAS, FCA, FOB] + added: [1, 2, CFR, CIF, CIP, CPT, DAP, DAT, DDP, EXW, FAS, FCA, FOB] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode Modifying element: @@ -418,6 +424,22 @@ Modifying element: Changed cardinality from 0..* to 0..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/DirectDebitMandateID +Modifying element: + old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + Changed enumeration from [] to [5, 29, 72] + added: [5, 29, 72] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + Modifying element: old: {AmountType}{0..*} in type {TradeSettlementHeaderMonetarySummationType} new: {AmountType}{1..1} in type {TradeSettlementHeaderMonetarySummationType} @@ -448,6 +470,13 @@ Modifying element: Changed cardinality from 0..1 to 1..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PayerPartyDebtorFinancialAccount/IBANID +Modifying element: + old: {CountryIDType}{0..1} in type {TradeCountryType} + new: {CountryIDType}{0..1} in type {TradeCountryType} + Changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] + added: [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID + Modifying element: old: {IDType}{0..*} in type {ReferencedProductType} new: {IDType}{0..1} in type {ReferencedProductType} @@ -524,6 +553,8 @@ Modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} new: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode Modifying element: @@ -614,12 +645,48 @@ Modifying element: Changed cardinality from 0..* to 0..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentReference +Modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + Changed enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] + added: [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode + Modifying element: old: {TradeAccountingAccountType}{0..*} in type {LineTradeSettlementType} new: {TradeAccountingAccountType}{0..1} in type {LineTradeSettlementType} Changed cardinality from 0..* to 0..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount +Modifying element: + old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + Changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] + added: [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode + Modifying element: old: {PartyRoleCodeType}{0..*} in type {TradePartyType} new: {PartyRoleCodeType}{0..1} in type {TradePartyType} @@ -654,6 +721,13 @@ Modifying element: Changed cardinality from 0..1 to 1..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty +Modifying element: + old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + Changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/SourceCurrencyCode + Modifying element: old: {LineTradeAgreementType}{0..1} in type {SupplyChainTradeLineItemType} new: {LineTradeAgreementType}{1..1} in type {SupplyChainTradeLineItemType} @@ -684,12 +758,26 @@ Modifying element: Changed cardinality from 0..1 to 1..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeSettlementLineMonetarySummation +Modifying element: + old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + Changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/TargetCurrencyCode + Modifying element: old: {AmountType}{0..*} in type {TradeSettlementHeaderMonetarySummationType} new: {AmountType}{1..2} in type {TradeSettlementHeaderMonetarySummationType} Changed cardinality from 0..* to 1..2 at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementHeaderMonetarySummation/TaxBasisTotalAmount +Modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode + Modifying element: old: {AmountType}{0..*} in type {TradeSettlementHeaderMonetarySummationType} new: {AmountType}{0..2} in type {TradeSettlementHeaderMonetarySummationType} @@ -714,18 +802,72 @@ Modifying element: Changed cardinality from 0..* to 0..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementHeaderMonetarySummation/TotalPrepaidAmount +Modifying element: + old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType} + new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] + added: [1, 2, 3, 4, 5, 6, 7] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/TypeCode + Modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} new: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] at /CrossIndustryInvoice/ExchangedDocument/TypeCode +Modifying element: + old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType} + new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/TypeCode + Modifying element: old: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} new: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96, 97, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96, 97, ZZZ] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode +Modifying element: + old: {TaxTypeCodeType}{0..1} in type {TradeTaxType} + new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} + Changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] + added: [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode + Modifying element: old: {UniversalCommunicationType}{0..*} in type {TradePartyType} new: {UniversalCommunicationType}{0..1} in type {TradePartyType} @@ -6582,8 +6724,8 @@ ELEMENTS: Added elements in XSD: 0 Added elements in XML: 0 - Modified elements in XSD: 78 - Modified elements in XML: 255 + Modified elements in XSD: 88 + Modified elements in XML: 325 Removed elements from XSD: 377 Removed elements from XML: 1629 diff --git a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EXTENDED_onlyRestrictionsReport.txt b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EXTENDED_onlyRestrictionsReport.txt index 436a20a..39cfb84 100644 --- a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EXTENDED_onlyRestrictionsReport.txt +++ b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EXTENDED_onlyRestrictionsReport.txt @@ -128,6 +128,7 @@ In type {ExchangedDocumentType} modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} new: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] In type {ExchangedDocumentType} removed {CodeType}{0..1} In type {ExchangedDocumentType} removed {IndicatorType}{0..1} In type {ExchangedDocumentType} removed {IDType}{0..1} @@ -176,6 +177,7 @@ In type {HeaderTradeSettlementType} modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} new: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] In type {HeaderTradeSettlementType} modifying element: old: {TextType}{0..*} in type {HeaderTradeSettlementType} new: {TextType}{0..1} in type {HeaderTradeSettlementType} @@ -184,6 +186,10 @@ In type {HeaderTradeSettlementType} modifying element: old: {TradeSettlementHeaderMonetarySummationType}{0..1} in type {HeaderTradeSettlementType} new: {TradeSettlementHeaderMonetarySummationType}{1..1} in type {HeaderTradeSettlementType} Restricted cardinality from 0..1 to 1..1 +In type {HeaderTradeSettlementType} modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + New restriction by enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] In type {HeaderTradeSettlementType} removed {TextType}{0..*} In type {HeaderTradeSettlementType} removed {CodeType}{0..1} In type {HeaderTradeSettlementType} removed {IDType}{0..*} @@ -365,6 +371,14 @@ In type {ReferencedDocumentType} modifying element: old: {BinaryObjectType}{0..*} in type {ReferencedDocumentType} new: {BinaryObjectType}{0..1} in type {ReferencedDocumentType} Restricted cardinality from 0..* to 0..1 +In type {ReferencedDocumentType} modifying element: + old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + New restriction by enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] +In type {ReferencedDocumentType} modifying element: + old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType} + new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] In type {ReferencedDocumentType} removed {SpecifiedBinaryFileType}{0..*} In type {ReferencedDocumentType} removed {IndicatorType}{0..1} In type {ReferencedDocumentType} removed {SpecifiedPeriodType}{0..1} @@ -481,6 +495,10 @@ In type {TimeReferenceCodeType} removed @listAgencyID {TimeReferenceCodeListAgen In type {TimeReferenceCodeType} removed @listID {token}{0..1} In type {TimeReferenceCodeType} removed @listVersionID {token}{0..1} In type {TimeReferenceCodeType} removed @name {string}{0..1} +In type {TradeAccountingAccountType} modifying element: + old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType} + new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7] In type {TradeAccountingAccountType} removed {AccountingAmountTypeCodeType}{0..1} In type {TradeAccountingAccountType} removed {TextType}{0..1} In type {TradeAccountingAccountType} removed {TextType}{0..1} @@ -489,6 +507,7 @@ In type {TradeAddressType} modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType} new: {CountryIDType}{1..1} in type {TradeAddressType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] In type {TradeAddressType} removed {TextType}{0..1} In type {TradeAddressType} removed {TextType}{0..1} In type {TradeAddressType} removed {TextType}{0..1} @@ -515,6 +534,10 @@ In type {TradeAllowanceChargeType} modifying element: old: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} new: {IndicatorType}{1..1} in type {TradeAllowanceChargeType} Restricted cardinality from 0..1 to 1..1 +In type {TradeAllowanceChargeType} modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + New restriction by enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] In type {TradeAllowanceChargeType} removed {TradeCurrencyExchangeType}{0..1} In type {TradeAllowanceChargeType} removed {IDType}{0..1} In type {TradeAllowanceChargeType} removed {IndicatorType}{0..1} @@ -531,8 +554,20 @@ In type {TradeContactType} removed {ContactPersonType}{ In type {TradeContactType} removed {NoteType}{0..*} In type {TradeContactType} removed {UniversalCommunicationType}{0..1} In type {TradeContactType} removed {UniversalCommunicationType}{0..1} +In type {TradeCountryType} modifying element: + old: {CountryIDType}{0..1} in type {TradeCountryType} + new: {CountryIDType}{0..1} in type {TradeCountryType} + New restriction by enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] In type {TradeCountryType} removed {TextType}{0..*} In type {TradeCountryType} removed {TradeCountrySubDivisionType}{0..*} +In type {TradeCurrencyExchangeType} modifying element: + old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + New restriction by enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] +In type {TradeCurrencyExchangeType} modifying element: + old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + New restriction by enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] In type {TradeCurrencyExchangeType} removed {ReferencedDocumentType}{0..*} In type {TradeCurrencyExchangeType} removed {IDType}{0..1} In type {TradeCurrencyExchangeType} removed {NumericType}{0..1} @@ -541,6 +576,7 @@ In type {TradeDeliveryTermsType} modifying element: old: {DeliveryTermsCodeType}{0..1} in type {TradeDeliveryTermsType} new: {DeliveryTermsCodeType}{1..1} in type {TradeDeliveryTermsType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [1, 2, CFR, CIF, CIP, CPT, DAP, DAT, DDP, EXW, FAS, FCA, FOB] In type {TradeDeliveryTermsType} removed {TextType}{0..*} In type {TradeDeliveryTermsType} removed {TradeLocationType}{0..1} In type {TradePartyType} modifying element: @@ -743,6 +779,7 @@ In type {TradeSettlementPaymentMeansType} modifying element: old: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} new: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96, 97, ZZZ] In type {TradeSettlementPaymentMeansType} removed {PaymentGuaranteeMeansCodeType}{0..1} In type {TradeSettlementPaymentMeansType} removed {IDType}{0..*} In type {TradeSettlementPaymentMeansType} removed {DebtorFinancialInstitutionType}{0..1} @@ -764,10 +801,19 @@ In type {TradeTaxType} modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] +In type {TradeTaxType} modifying element: + old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + New restriction by enumeration from [] to [5, 29, 72] In type {TradeTaxType} modifying element: old: {AmountType}{0..*} in type {TradeTaxType} new: {AmountType}{0..1} in type {TradeTaxType} Restricted cardinality from 0..* to 0..1 +In type {TradeTaxType} modifying element: + old: {TaxTypeCodeType}{0..1} in type {TradeTaxType} + new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} + New restriction by enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] In type {TradeTaxType} removed {QuantityType}{0..1} In type {TradeTaxType} removed {TradeAccountingAccountType}{0..1} In type {TradeTaxType} removed {TradeAccountingAccountType}{0..1} diff --git a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EXTENDED_singleLineReport.txt b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EXTENDED_singleLineReport.txt index 6f42bfd..575649e 100644 --- a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EXTENDED_singleLineReport.txt +++ b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_EXTENDED_singleLineReport.txt @@ -63,7 +63,7 @@ /CrossIndustryInvoice/ExchangedDocument/PurposeCode removed {MessageFunctionCodeType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/RevisionDateTime removed {DateTimeType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/RevisionID removed {IDType}{0..1} in type {ExchangedDocumentType} -/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -126,6 +126,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -133,6 +134,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -144,7 +146,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/URIID/@schemeName removed @schemeName {string}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/URIID/@schemeURI removed @schemeURI {anyURI}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/URIID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {IDType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode modifying element: old: {DeliveryTermsCodeType}{0..1} in type {TradeDeliveryTermsType}new: {DeliveryTermsCodeType}{1..1} in type {TradeDeliveryTermsType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode modifying element: old: {DeliveryTermsCodeType}{0..1} in type {TradeDeliveryTermsType}new: {DeliveryTermsCodeType}{1..1} in type {TradeDeliveryTermsType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1, 2, CFR, CIF, CIP, CPT, DAP, DAT, DDP, EXW, FAS, FCA, FOB] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode/@listAgencyID removed @listAgencyID {DeliveryTermsCodeListAgencyIDContentType}{0..1} in type {DeliveryTermsCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode/@listID removed @listID {token}{0..1} in type {DeliveryTermsCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {DeliveryTermsCodeType} @@ -223,7 +225,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -272,7 +274,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -349,6 +351,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -356,6 +359,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -443,7 +447,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -492,7 +496,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -613,7 +617,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -662,7 +666,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -738,6 +742,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -745,6 +750,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -832,7 +838,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -881,7 +887,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -959,6 +965,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -966,6 +973,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -1052,7 +1060,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -1101,7 +1109,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -1178,6 +1186,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -1185,6 +1194,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -1269,7 +1279,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -1318,7 +1328,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -1439,7 +1449,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -1488,7 +1498,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -1574,6 +1584,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -1581,6 +1592,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -1638,6 +1650,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -1645,6 +1658,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -1685,6 +1699,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -1692,6 +1707,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -1734,6 +1750,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -1741,6 +1758,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -1853,7 +1871,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -1902,7 +1920,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2022,7 +2040,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2071,7 +2089,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2191,7 +2209,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2240,7 +2258,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2300,7 +2318,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -2308,6 +2326,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -2335,6 +2354,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TaxPointDate/Date removed {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{0..1} in type {DateType}new: @format{string}{1..1} in type {DateType} changed cardinality from 0..1 to 1..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -2374,7 +2394,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument removed {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument removed {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange removed {TradeCurrencyExchangeType}{0..1} in type {HeaderTradeSettlementType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listAgencyID removed @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} @@ -2411,6 +2431,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -2418,6 +2439,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -2502,7 +2524,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2551,7 +2573,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2671,7 +2693,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2720,7 +2742,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2843,7 +2865,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -2892,7 +2914,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -3012,7 +3034,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -3061,7 +3083,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -3125,6 +3147,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/Name removed {TextType}{0..1} in type {TradeAccountingAccountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/SetTriggerCode removed {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/TypeCode/@listAgencyID removed @listAgencyID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} @@ -3144,7 +3167,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -3152,6 +3175,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -3179,6 +3203,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/TaxPointDate/Date removed {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{0..1} in type {DateType}new: @format{string}{1..1} in type {DateType} changed cardinality from 0..1 to 1..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -3203,7 +3228,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -3211,6 +3236,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -3238,6 +3264,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TaxPointDate/Date removed {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{0..1} in type {DateType}new: @format{string}{1..1} in type {DateType} changed cardinality from 0..1 to 1..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -3278,7 +3305,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -3286,6 +3313,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -3313,6 +3341,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/Date removed {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{0..1} in type {DateType}new: @format{string}{1..1} in type {DateType} changed cardinality from 0..1 to 1..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -3324,6 +3353,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/PrepaidIndicator removed {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listAgencyID removed @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeReasonCodeType} @@ -3435,7 +3465,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -3484,7 +3514,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -3647,7 +3677,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PayerSpecifiedDebtorFinancialInstitution removed {DebtorFinancialInstitutionType}{0..1} in type {TradeSettlementPaymentMeansType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PaymentChannelCode removed {PaymentMeansChannelCodeType}{0..1} in type {TradeSettlementPaymentMeansType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PaymentMethodCode removed {CodeType}{0..1} in type {TradeSettlementPaymentMeansType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode modifying element: old: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType}new: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode modifying element: old: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType}new: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96, 97, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode/@listAgencyID removed @listAgencyID {PaymentMeansCodeListAgencyIDContentType}{0..1} in type {PaymentMeansCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode/@listID removed @listID {token}{0..1} in type {PaymentMeansCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {PaymentMeansCodeType} @@ -3657,16 +3687,19 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/ConversionRateDateTime/DateTime removed {dateTime}{0..1} in type {DateTimeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/ConversionRateDateTime/DateTimeString/@format modifying attribute: old: @format{string}{0..1} in type {DateTimeType}new: @format{string}{1..1} in type {DateTimeType} changed cardinality from 0..1 to 1..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/MarketID removed {IDType}{0..1} in type {TradeCurrencyExchangeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/SourceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/SourceCurrencyCode/@listAgencyID removed @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/SourceCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/SourceCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/SourceCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/SourceUnitBasisNumeric removed {NumericType}{0..1} in type {TradeCurrencyExchangeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/TargetCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/TargetCurrencyCode/@listAgencyID removed @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/TargetCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/TargetCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/TargetCurrencyCode/@listVersionID removed @listVersionID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/TargetUnitBaseNumeric removed {NumericType}{0..1} in type {TradeCurrencyExchangeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode/@listAgencyID removed @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} @@ -3748,6 +3781,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -3755,6 +3789,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -3796,6 +3831,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -3803,6 +3839,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -3845,6 +3882,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -3852,6 +3890,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -3885,7 +3924,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -3893,6 +3932,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -3920,6 +3960,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/Date removed {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{0..1} in type {DateType}new: @format{string}{1..1} in type {DateType} changed cardinality from 0..1 to 1..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -3931,6 +3972,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/PrepaidIndicator removed {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listAgencyID removed @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeReasonCodeType} @@ -3959,7 +4001,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -3967,6 +4009,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -3994,6 +4037,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TaxPointDate/Date removed {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{0..1} in type {DateType}new: @format{string}{1..1} in type {DateType} changed cardinality from 0..1 to 1..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -4030,7 +4074,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -4038,6 +4082,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -4065,6 +4110,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/Date removed {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{0..1} in type {DateType}new: @format{string}{1..1} in type {DateType} changed cardinality from 0..1 to 1..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -4076,6 +4122,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/PrepaidIndicator removed {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listAgencyID removed @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeReasonCodeType} @@ -4104,7 +4151,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -4112,6 +4159,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -4139,6 +4187,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TaxPointDate/Date removed {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{0..1} in type {DateType}new: @format{string}{1..1} in type {DateType} changed cardinality from 0..1 to 1..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -4180,6 +4229,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -4187,6 +4237,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -4229,6 +4280,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -4236,6 +4288,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -4301,6 +4354,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -4308,6 +4362,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -4348,6 +4403,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -4355,6 +4411,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -4406,6 +4463,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -4413,6 +4471,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -4501,7 +4560,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -4550,7 +4609,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -4672,7 +4731,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -4721,7 +4780,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -4797,6 +4856,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -4804,6 +4864,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -4828,7 +4889,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -4836,6 +4897,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -4863,6 +4925,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TaxPointDate/Date removed {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{0..1} in type {DateType}new: @format{string}{1..1} in type {DateType} changed cardinality from 0..1 to 1..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -4918,6 +4981,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/PreviousRevisionID removed {IDType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode/@listAgencyID removed @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode/@listID removed @listID {token}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {ReferenceCodeType} @@ -4925,6 +4989,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/RevisionID removed {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/SectionName removed {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/StatusCode removed {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -4950,6 +5015,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/Name removed {TextType}{0..1} in type {TradeAccountingAccountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/SetTriggerCode removed {AccountingDocumentCodeType}{0..1} in type {TradeAccountingAccountType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/TypeCode modifying element: old: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}new: {AccountingAccountTypeCodeType}{0..1} in type {TradeAccountingAccountType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/TypeCode/@listAgencyID removed @listAgencyID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/TypeCode/@listID removed @listID {token}{0..1} in type {AccountingAccountTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {AccountingAccountTypeCodeType} @@ -4978,7 +5044,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedAmount/@currencyCodeListVersionID removed @currencyCodeListVersionID {token}{0..1} in type {AmountType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate removed {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric removed {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{0..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID removed @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listID removed @listID {token}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxCategoryCodeType} @@ -4986,6 +5052,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryName removed {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode removed {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator removed {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [5, 29, 72] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID removed @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listID removed @listID {token}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listVersionID removed @listVersionID {token}{0..1} in type {TimeReferenceCodeType} @@ -5013,6 +5080,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/Date removed {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{0..1} in type {DateType}new: @format{string}{1..1} in type {DateType} changed cardinality from 0..1 to 1..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/Type removed {TextType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID removed @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listID removed @listID {token}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {TaxTypeCodeType} @@ -5024,6 +5092,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/PrepaidIndicator removed {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [] to [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listAgencyID removed @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listID removed @listID {token}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listURI removed @listURI {anyURI}{0..1} in type {AllowanceChargeReasonCodeType} @@ -5209,6 +5278,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/Name/@languageID removed @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/Name/@languageLocaleID removed @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/NetWeightMeasure removed {MeasureType}{0..1} in type {TradeProductType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} diff --git a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_MINIMUM.txt b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_MINIMUM.txt index f417a4b..30331ee 100644 --- a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_MINIMUM.txt +++ b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_MINIMUM.txt @@ -25,6 +25,8 @@ Modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType} new: {CountryIDType}{1..1} in type {TradeAddressType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] + added: [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID @@ -64,6 +66,8 @@ Modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} new: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode Modifying element: @@ -114,6 +118,8 @@ Modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} new: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} Changed cardinality from 0..1 to 1..1 + Changed enumeration from [] to [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] + added: [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] at /CrossIndustryInvoice/ExchangedDocument/TypeCode Removed attribute @currencyCodeListVersionID {token}{0..1} in type {AmountType} diff --git a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_MINIMUM_onlyRestrictionsReport.txt b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_MINIMUM_onlyRestrictionsReport.txt index 9a60854..2f87ff0 100644 --- a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_MINIMUM_onlyRestrictionsReport.txt +++ b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_MINIMUM_onlyRestrictionsReport.txt @@ -42,6 +42,7 @@ In type {ExchangedDocumentType} modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} new: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] In type {ExchangedDocumentType} removed {CodeType}{0..1} In type {ExchangedDocumentType} removed {IndicatorType}{0..1} In type {ExchangedDocumentType} removed {IndicatorType}{0..1} @@ -107,6 +108,7 @@ In type {HeaderTradeSettlementType} modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} new: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] In type {HeaderTradeSettlementType} modifying element: old: {TradeSettlementHeaderMonetarySummationType}{0..1} in type {HeaderTradeSettlementType} new: {TradeSettlementHeaderMonetarySummationType}{1..1} in type {HeaderTradeSettlementType} @@ -195,6 +197,7 @@ In type {TradeAddressType} modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType} new: {CountryIDType}{1..1} in type {TradeAddressType} Restricted cardinality from 0..1 to 1..1 + New restriction by enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] In type {TradeAddressType} removed {TextType}{0..1} In type {TradeAddressType} removed {TextType}{0..1} In type {TradeAddressType} removed {TextType}{0..1} diff --git a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_MINIMUM_singleLineReport.txt b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_MINIMUM_singleLineReport.txt index 872565c..4217727 100644 --- a/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_MINIMUM_singleLineReport.txt +++ b/src/test/resources/references/report_CrossIndustryInvoice_100pD16B_to_FACTUR-X_MINIMUM_singleLineReport.txt @@ -20,7 +20,7 @@ /CrossIndustryInvoice/ExchangedDocument/PurposeCode removed {MessageFunctionCodeType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/RevisionDateTime removed {DateTimeType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/RevisionID removed {IDType}{0..1} in type {ExchangedDocumentType} -/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listAgencyID removed @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listID removed @listID {token}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listURI removed @listURI {anyURI}{0..1} in type {DocumentCodeType} @@ -103,7 +103,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CareOf removed {TextType}{0..1} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CityName removed {TextType}{0..1} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -173,7 +173,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CareOf removed {TextType}{0..1} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CityName removed {TextType}{0..1} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CitySubDivisionName removed {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{0..1} in type {TradeAddressType}new: {CountryIDType}{1..1} in type {TradeAddressType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID removed @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeID removed @schemeID {token}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeVersionID removed @schemeVersionID {token}{0..1} in type {CountryIDType} @@ -242,7 +242,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument removed {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument removed {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange removed {TradeCurrencyExchangeType}{0..1} in type {HeaderTradeSettlementType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} changed cardinality from 0..1 to 1..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} changed cardinality from 0..1 to 1..1changed enumeration from [] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listAgencyID removed @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listID removed @listID {token}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listURI removed @listURI {anyURI}{0..1} in type {CurrencyCodeType} diff --git a/src/test/resources/references/report_FACTUR-X_BASIC-WL_to_CrossIndustryInvoice_100pD22B.txt b/src/test/resources/references/report_FACTUR-X_BASIC-WL_to_CrossIndustryInvoice_100pD22B.txt index d9bfefc..daa023e 100644 --- a/src/test/resources/references/report_FACTUR-X_BASIC-WL_to_CrossIndustryInvoice_100pD22B.txt +++ b/src/test/resources/references/report_FACTUR-X_BASIC-WL_to_CrossIndustryInvoice_100pD22B.txt @@ -1462,6 +1462,7 @@ Modifying attribute: Changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentType Changed cardinality from 1..1 to 0..1 Changed enumeration from [] to [102, 203, 205, 209, 502, 602] + added: [102, 203, 205, 209, 502, 602] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/FormattedIssueDateTime/DateTimeString/@format at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/FormattedIssueDateTime/DateTimeString/@format at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/FormattedIssueDateTime/DateTimeString/@format @@ -1525,6 +1526,8 @@ Modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [AE, E, G, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] + added: [A, AA, AB, AC, AD, B, C, D, F, H, I, J, N] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode @@ -1556,6 +1559,8 @@ Modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType} new: {CountryIDType}{0..1} in type {TradeAddressType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + removed: [1A, XI] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID @@ -1584,6 +1589,14 @@ Modifying element: Changed cardinality from 0..1 to 0..* at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/DirectDebitMandateID +Modifying element: + old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + Changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] + added: [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + Modifying element: old: {AmountType}{1..1} in type {TradeSettlementHeaderMonetarySummationType} new: {AmountType}{0..*} in type {TradeSettlementHeaderMonetarySummationType} @@ -1635,6 +1648,8 @@ Modifying element: old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode Modifying element: @@ -1676,6 +1691,13 @@ Modifying element: Changed cardinality from 0..1 to 0..* at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentReference +Modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + Changed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 69, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 101] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode + Modifying element: old: {TradeAccountingAccountType}{0..1} in type {HeaderTradeSettlementType} new: {TradeAccountingAccountType}{0..*} in type {HeaderTradeSettlementType} @@ -1728,6 +1750,13 @@ Modifying element: Changed cardinality from 1..1 to 0..* at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementHeaderMonetarySummation/TaxBasisTotalAmount +Modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode + Modifying element: old: {AmountType}{0..2} in type {TradeSettlementHeaderMonetarySummationType} new: {AmountType}{0..*} in type {TradeSettlementHeaderMonetarySummationType} @@ -1744,18 +1773,24 @@ Modifying element: old: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 205, 206, 207, 208, 209, 210, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 382, 391, 392, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 624, 625, 626, 627, 628, 629, 630, 631, 632, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] at /CrossIndustryInvoice/ExchangedDocument/TypeCode Modifying element: old: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType} new: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [10, 20, 30, 42, 48, 49, 57, 58, 59, 97, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96, 97, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 55, 56, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode Modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType} new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] + added: [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode @@ -1789,8 +1824,8 @@ ELEMENTS: Added elements in XSD: 251 Added elements in XML: 479 - Modified elements in XSD: 45 - Modified elements in XML: 77 + Modified elements in XSD: 48 + Modified elements in XML: 81 Removed elements from XSD: 0 Removed elements from XML: 0 diff --git a/src/test/resources/references/report_FACTUR-X_BASIC-WL_to_CrossIndustryInvoice_100pD22B_onlyExtensionsReport.txt b/src/test/resources/references/report_FACTUR-X_BASIC-WL_to_CrossIndustryInvoice_100pD22B_onlyExtensionsReport.txt index f5f4bb3..7e9874b 100644 --- a/src/test/resources/references/report_FACTUR-X_BASIC-WL_to_CrossIndustryInvoice_100pD22B_onlyExtensionsReport.txt +++ b/src/test/resources/references/report_FACTUR-X_BASIC-WL_to_CrossIndustryInvoice_100pD22B_onlyExtensionsReport.txt @@ -76,6 +76,8 @@ In type {ExchangedDocumentType} modifying element: old: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} Extended cardinality from 1..1 to 0..1 + Extended enumeration from [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 205, 206, 207, 208, 209, 210, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 382, 391, 392, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 624, 625, 626, 627, 628, 629, 630, 631, 632, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] In type {FormattedDateTimeType} modifying attribute: old: @format{FormattedDateTimeFormatContentType}{1..1} in type {FormattedDateTimeType} new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} @@ -159,6 +161,8 @@ In type {HeaderTradeSettlementType} modifying element: old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} Extended cardinality from 1..1 to 0..1 + Extended enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] In type {HeaderTradeSettlementType} modifying element: old: {ReferencedDocumentType}{0..1} in type {HeaderTradeSettlementType} new: {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} @@ -183,6 +187,11 @@ In type {HeaderTradeSettlementType} modifying element: old: {TradeSettlementPaymentMeansType}{0..1} in type {HeaderTradeSettlementType} new: {TradeSettlementPaymentMeansType}{0..*} in type {HeaderTradeSettlementType} Extended cardinality from 0..1 to 0..* +In type {HeaderTradeSettlementType} modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Extended enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] In type {IDType} added @schemeAgencyID {token}{0..1} In type {IDType} added @schemeAgencyName {string}{0..1} In type {IDType} added @schemeDataURI {anyURI}{0..1} @@ -319,6 +328,11 @@ In type {TradeAllowanceChargeType} modifying element: old: {IndicatorType}{1..1} in type {TradeAllowanceChargeType} new: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} Extended cardinality from 1..1 to 0..1 +In type {TradeAllowanceChargeType} modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + Extended enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 69, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 101] In type {TradePartyType} added {TradeContactType}{0..*} In type {TradePartyType} added {TextType}{0..*} In type {TradePartyType} added {UniversalCommunicationType}{0..1} @@ -418,6 +432,8 @@ In type {TradeSettlementPaymentMeansType} modifying element: old: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType} new: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} Extended cardinality from 1..1 to 0..1 + Extended enumeration from [10, 20, 30, 42, 48, 49, 57, 58, 59, 97, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96, 97, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 55, 56, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96] In type {TradeTaxType} added {AmountType}{0..*} In type {TradeTaxType} added {QuantityType}{0..1} In type {TradeTaxType} added {TradeAccountingAccountType}{0..1} @@ -454,10 +470,19 @@ In type {TradeTaxType} modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} Extended cardinality from 1..1 to 0..1 + Extended enumeration from [AE, E, G, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] + added: [A, AA, AB, AC, AD, B, C, D, F, H, I, J, N] +In type {TradeTaxType} modifying element: + old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + Extended enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] + added: [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] In type {TradeTaxType} modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType} new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} Extended cardinality from 1..1 to 0..1 + Extended enumeration from [VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] + added: [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD] In type {UniversalCommunicationType} added {CommunicationChannelCodeType}{0..1} In type {UniversalCommunicationType} added {TextType}{0..1} In type {UniversalCommunicationType} modifying element: diff --git a/src/test/resources/references/report_FACTUR-X_BASIC-WL_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt b/src/test/resources/references/report_FACTUR-X_BASIC-WL_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt index b756ad6..436de7f 100644 --- a/src/test/resources/references/report_FACTUR-X_BASIC-WL_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt +++ b/src/test/resources/references/report_FACTUR-X_BASIC-WL_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt @@ -2,3 +2,23 @@ In type {FormattedDateTimeType} modifying attribute: old: @format{FormattedDateTimeFormatContentType}{1..1} in type {FormattedDateTimeType} new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} New restriction by enumeration from [] to [102, 203, 205, 209, 502, 602] +In type {HeaderTradeSettlementType} modifying element: + old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Narrowed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + removed: [SLL] +In type {HeaderTradeSettlementType} modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Narrowed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + removed: [SLL] +In type {TradeAddressType} modifying element: + old: {CountryIDType}{1..1} in type {TradeAddressType} + new: {CountryIDType}{0..1} in type {TradeAddressType} + Narrowed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + removed: [1A, XI] +In type {TradeAllowanceChargeType} modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + Narrowed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] + removed: [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, 105] diff --git a/src/test/resources/references/report_FACTUR-X_BASIC-WL_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt b/src/test/resources/references/report_FACTUR-X_BASIC-WL_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt index 1fa36d1..4b7ddf9 100644 --- a/src/test/resources/references/report_FACTUR-X_BASIC-WL_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt +++ b/src/test/resources/references/report_FACTUR-X_BASIC-WL_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt @@ -43,7 +43,7 @@ /CrossIndustryInvoice/ExchangedDocument/RevisionID added {IDType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/SignatoryDocumentAuthentication added {DocumentAuthenticationType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/SubtypeCode added {CodeType}{0..1} in type {ExchangedDocumentType} -/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{1..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{1..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} changed cardinality from 1..1 to 0..1changed enumeration from [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/ExchangedDocument/VersionID added {IDType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocumentContext/ApplicationSpecifiedDocumentContextParameter added {DocumentContextParameterType}{0..*} in type {ExchangedDocumentContextType} @@ -140,7 +140,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -276,7 +276,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -370,7 +370,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -520,7 +520,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -600,11 +600,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [AE, E, G, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -630,7 +631,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TaxBasisAllowanceRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TaxPointDate added {DateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/BillingSpecifiedPeriod/CompleteDateTime added {DateTimeType}{0..1} in type {SpecifiedPeriodType} @@ -664,7 +665,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument added {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument added {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange added {TradeCurrencyExchangeType}{0..1} in type {HeaderTradeSettlementType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} changed cardinality from 1..1 to 0..1changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listAgencyID added @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceDateTime added {DateTimeType}{0..1} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceIssuerReference added {TextType}{0..1} in type {HeaderTradeSettlementType} @@ -731,7 +732,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -840,11 +841,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [AE, E, G, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -870,7 +872,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxBasisAllowanceRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate added {DateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ChargeIndicator modifying element: old: {IndicatorType}{1..1} in type {TradeAllowanceChargeType}new: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} changed cardinality from 1..1 to 0..1 @@ -879,6 +881,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/PrepaidIndicator added {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listAgencyID added @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/SequenceNumeric added {NumericType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/TypeCode added {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType} @@ -972,10 +975,11 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PayerSpecifiedDebtorFinancialInstitution added {DebtorFinancialInstitutionType}{0..1} in type {TradeSettlementPaymentMeansType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PaymentChannelCode added {PaymentMeansChannelCodeType}{0..1} in type {TradeSettlementPaymentMeansType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PaymentMethodCode added {CodeType}{0..1} in type {TradeSettlementPaymentMeansType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode modifying element: old: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType}new: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode modifying element: old: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType}new: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} changed cardinality from 1..1 to 0..1changed enumeration from [10, 20, 30, 42, 48, 49, 57, 58, 59, 97, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96, 97, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode/@listAgencyID added @listAgencyID {PaymentMeansCodeListAgencyIDContentType}{0..1} in type {PaymentMeansCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax added {TradeTaxType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange added {TradeCurrencyExchangeType}{0..1} in type {HeaderTradeSettlementType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode/@listAgencyID added @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty added {TradePartyType}{0..1} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem added {SupplyChainTradeLineItemType}{0..*} in type {SupplyChainTradeTransactionType} diff --git a/src/test/resources/references/report_FACTUR-X_BASIC_to_CrossIndustryInvoice_100pD22B.txt b/src/test/resources/references/report_FACTUR-X_BASIC_to_CrossIndustryInvoice_100pD22B.txt index e9ded08..8b07ebb 100644 --- a/src/test/resources/references/report_FACTUR-X_BASIC_to_CrossIndustryInvoice_100pD22B.txt +++ b/src/test/resources/references/report_FACTUR-X_BASIC_to_CrossIndustryInvoice_100pD22B.txt @@ -2193,6 +2193,7 @@ Modifying attribute: Changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentType Changed cardinality from 1..1 to 0..1 Changed enumeration from [] to [102, 203, 205, 209, 502, 602] + added: [102, 203, 205, 209, 502, 602] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/FormattedIssueDateTime/DateTimeString/@format at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/FormattedIssueDateTime/DateTimeString/@format at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/FormattedIssueDateTime/DateTimeString/@format @@ -2294,6 +2295,8 @@ Modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [AE, E, G, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] + added: [A, AA, AB, AC, AD, B, C, D, F, H, I, J, N] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode @@ -2343,6 +2346,8 @@ Modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType} new: {CountryIDType}{0..1} in type {TradeAddressType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + removed: [1A, XI] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID @@ -2371,6 +2376,18 @@ Modifying element: Changed cardinality from 0..1 to 0..* at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/DirectDebitMandateID +Modifying element: + old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + Changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] + added: [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + Modifying element: old: {AmountType}{1..1} in type {TradeSettlementHeaderMonetarySummationType} new: {AmountType}{0..*} in type {TradeSettlementHeaderMonetarySummationType} @@ -2434,6 +2451,8 @@ Modifying element: old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode Modifying element: @@ -2499,6 +2518,16 @@ Modifying element: Changed cardinality from 0..1 to 0..* at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentReference +Modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + Changed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 69, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 101] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode + Modifying element: old: {TradeAccountingAccountType}{0..1} in type {HeaderTradeSettlementType} new: {TradeAccountingAccountType}{0..*} in type {HeaderTradeSettlementType} @@ -2576,6 +2605,13 @@ Modifying element: Changed cardinality from 1..1 to 0..* at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementHeaderMonetarySummation/TaxBasisTotalAmount +Modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode + Modifying element: old: {AmountType}{0..2} in type {TradeSettlementHeaderMonetarySummationType} new: {AmountType}{0..*} in type {TradeSettlementHeaderMonetarySummationType} @@ -2592,18 +2628,24 @@ Modifying element: old: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 205, 206, 207, 208, 209, 210, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 382, 391, 392, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 624, 625, 626, 627, 628, 629, 630, 631, 632, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] at /CrossIndustryInvoice/ExchangedDocument/TypeCode Modifying element: old: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType} new: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [10, 20, 30, 42, 48, 49, 57, 58, 59, 97, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96, 97, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 55, 56, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode Modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType} new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] + added: [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode @@ -2641,8 +2683,8 @@ ELEMENTS: Added elements in XSD: 402 Added elements in XML: 779 - Modified elements in XSD: 60 - Modified elements in XML: 121 + Modified elements in XSD: 63 + Modified elements in XML: 132 Removed elements from XSD: 0 Removed elements from XML: 0 diff --git a/src/test/resources/references/report_FACTUR-X_BASIC_to_CrossIndustryInvoice_100pD22B_onlyExtensionsReport.txt b/src/test/resources/references/report_FACTUR-X_BASIC_to_CrossIndustryInvoice_100pD22B_onlyExtensionsReport.txt index 4d88665..06cc959 100644 --- a/src/test/resources/references/report_FACTUR-X_BASIC_to_CrossIndustryInvoice_100pD22B_onlyExtensionsReport.txt +++ b/src/test/resources/references/report_FACTUR-X_BASIC_to_CrossIndustryInvoice_100pD22B_onlyExtensionsReport.txt @@ -90,6 +90,8 @@ In type {ExchangedDocumentType} modifying element: old: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} Extended cardinality from 1..1 to 0..1 + Extended enumeration from [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 205, 206, 207, 208, 209, 210, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 382, 391, 392, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 624, 625, 626, 627, 628, 629, 630, 631, 632, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] In type {FormattedDateTimeType} modifying attribute: old: @format{FormattedDateTimeFormatContentType}{1..1} in type {FormattedDateTimeType} new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} @@ -173,6 +175,8 @@ In type {HeaderTradeSettlementType} modifying element: old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} Extended cardinality from 1..1 to 0..1 + Extended enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] In type {HeaderTradeSettlementType} modifying element: old: {ReferencedDocumentType}{0..1} in type {HeaderTradeSettlementType} new: {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} @@ -197,6 +201,11 @@ In type {HeaderTradeSettlementType} modifying element: old: {TradeSettlementPaymentMeansType}{0..1} in type {HeaderTradeSettlementType} new: {TradeSettlementPaymentMeansType}{0..*} in type {HeaderTradeSettlementType} Extended cardinality from 0..1 to 0..* +In type {HeaderTradeSettlementType} modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Extended enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] In type {IDType} added @schemeAgencyID {token}{0..1} In type {IDType} added @schemeAgencyName {string}{0..1} In type {IDType} added @schemeDataURI {anyURI}{0..1} @@ -432,6 +441,11 @@ In type {TradeAllowanceChargeType} modifying element: old: {IndicatorType}{1..1} in type {TradeAllowanceChargeType} new: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} Extended cardinality from 1..1 to 0..1 +In type {TradeAllowanceChargeType} modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + Extended enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 69, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 101] In type {TradePartyType} added {TradeContactType}{0..*} In type {TradePartyType} added {TextType}{0..*} In type {TradePartyType} added {UniversalCommunicationType}{0..1} @@ -632,6 +646,8 @@ In type {TradeSettlementPaymentMeansType} modifying element: old: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType} new: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} Extended cardinality from 1..1 to 0..1 + Extended enumeration from [10, 20, 30, 42, 48, 49, 57, 58, 59, 97, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96, 97, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 55, 56, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96] In type {TradeTaxType} added {AmountType}{0..*} In type {TradeTaxType} added {QuantityType}{0..1} In type {TradeTaxType} added {TradeAccountingAccountType}{0..1} @@ -668,10 +684,19 @@ In type {TradeTaxType} modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} Extended cardinality from 1..1 to 0..1 + Extended enumeration from [AE, E, G, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] + added: [A, AA, AB, AC, AD, B, C, D, F, H, I, J, N] +In type {TradeTaxType} modifying element: + old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + Extended enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] + added: [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] In type {TradeTaxType} modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType} new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} Extended cardinality from 1..1 to 0..1 + Extended enumeration from [VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] + added: [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD] In type {UniversalCommunicationType} added {CommunicationChannelCodeType}{0..1} In type {UniversalCommunicationType} added {TextType}{0..1} In type {UniversalCommunicationType} modifying element: diff --git a/src/test/resources/references/report_FACTUR-X_BASIC_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt b/src/test/resources/references/report_FACTUR-X_BASIC_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt index b756ad6..436de7f 100644 --- a/src/test/resources/references/report_FACTUR-X_BASIC_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt +++ b/src/test/resources/references/report_FACTUR-X_BASIC_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt @@ -2,3 +2,23 @@ In type {FormattedDateTimeType} modifying attribute: old: @format{FormattedDateTimeFormatContentType}{1..1} in type {FormattedDateTimeType} new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} New restriction by enumeration from [] to [102, 203, 205, 209, 502, 602] +In type {HeaderTradeSettlementType} modifying element: + old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Narrowed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + removed: [SLL] +In type {HeaderTradeSettlementType} modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Narrowed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + removed: [SLL] +In type {TradeAddressType} modifying element: + old: {CountryIDType}{1..1} in type {TradeAddressType} + new: {CountryIDType}{0..1} in type {TradeAddressType} + Narrowed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + removed: [1A, XI] +In type {TradeAllowanceChargeType} modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + Narrowed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] + removed: [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, 105] diff --git a/src/test/resources/references/report_FACTUR-X_BASIC_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt b/src/test/resources/references/report_FACTUR-X_BASIC_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt index 54b3e34..c894864 100644 --- a/src/test/resources/references/report_FACTUR-X_BASIC_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt +++ b/src/test/resources/references/report_FACTUR-X_BASIC_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt @@ -43,7 +43,7 @@ /CrossIndustryInvoice/ExchangedDocument/RevisionID added {IDType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/SignatoryDocumentAuthentication added {DocumentAuthenticationType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/SubtypeCode added {CodeType}{0..1} in type {ExchangedDocumentType} -/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{1..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{1..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} changed cardinality from 1..1 to 0..1changed enumeration from [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/ExchangedDocument/VersionID added {IDType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocumentContext/ApplicationSpecifiedDocumentContextParameter added {DocumentContextParameterType}{0..*} in type {ExchangedDocumentContextType} @@ -140,7 +140,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -276,7 +276,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -370,7 +370,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -520,7 +520,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -600,11 +600,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [AE, E, G, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -630,7 +631,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TaxBasisAllowanceRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TaxPointDate added {DateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/BillingSpecifiedPeriod/CompleteDateTime added {DateTimeType}{0..1} in type {SpecifiedPeriodType} @@ -664,7 +665,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument added {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument added {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange added {TradeCurrencyExchangeType}{0..1} in type {HeaderTradeSettlementType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} changed cardinality from 1..1 to 0..1changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listAgencyID added @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceDateTime added {DateTimeType}{0..1} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceIssuerReference added {TextType}{0..1} in type {HeaderTradeSettlementType} @@ -731,7 +732,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -840,11 +841,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [AE, E, G, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -870,7 +872,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxBasisAllowanceRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate added {DateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ChargeIndicator modifying element: old: {IndicatorType}{1..1} in type {TradeAllowanceChargeType}new: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} changed cardinality from 1..1 to 0..1 @@ -879,6 +881,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/PrepaidIndicator added {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listAgencyID added @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/SequenceNumeric added {NumericType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/TypeCode added {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType} @@ -972,10 +975,11 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PayerSpecifiedDebtorFinancialInstitution added {DebtorFinancialInstitutionType}{0..1} in type {TradeSettlementPaymentMeansType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PaymentChannelCode added {PaymentMeansChannelCodeType}{0..1} in type {TradeSettlementPaymentMeansType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PaymentMethodCode added {CodeType}{0..1} in type {TradeSettlementPaymentMeansType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode modifying element: old: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType}new: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode modifying element: old: {PaymentMeansCodeType}{1..1} in type {TradeSettlementPaymentMeansType}new: {PaymentMeansCodeType}{0..1} in type {TradeSettlementPaymentMeansType} changed cardinality from 1..1 to 0..1changed enumeration from [10, 20, 30, 42, 48, 49, 57, 58, 59, 97, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 91, 92, 93, 94, 95, 96, 97, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode/@listAgencyID added @listAgencyID {PaymentMeansCodeListAgencyIDContentType}{0..1} in type {PaymentMeansCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax added {TradeTaxType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange added {TradeCurrencyExchangeType}{0..1} in type {HeaderTradeSettlementType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode/@listAgencyID added @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty added {TradePartyType}{0..1} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem modifying element: old: {SupplyChainTradeLineItemType}{1..*} in type {SupplyChainTradeTransactionType}new: {SupplyChainTradeLineItemType}{0..*} in type {SupplyChainTradeTransactionType} changed cardinality from 1..* to 0..* @@ -1041,11 +1045,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [AE, E, G, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -1071,7 +1076,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxBasisAllowanceRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate added {DateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ChargeIndicator modifying element: old: {IndicatorType}{1..1} in type {TradeAllowanceChargeType}new: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} changed cardinality from 1..1 to 0..1 @@ -1080,6 +1085,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/PrepaidIndicator added {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listAgencyID added @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/SequenceNumeric added {NumericType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode added {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType} @@ -1125,11 +1131,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [AE, E, G, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -1155,7 +1162,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxBasisAllowanceRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate added {DateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ChargeIndicator modifying element: old: {IndicatorType}{1..1} in type {TradeAllowanceChargeType}new: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} changed cardinality from 1..1 to 0..1 @@ -1164,6 +1171,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/PrepaidIndicator added {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listAgencyID added @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/SequenceNumeric added {NumericType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode added {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType} @@ -1236,11 +1244,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [AE, E, G, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -1266,7 +1275,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TaxBasisAllowanceRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TaxPointDate added {DateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/BillingSpecifiedPeriod/CompleteDateTime added {DateTimeType}{0..1} in type {SpecifiedPeriodType} @@ -1315,11 +1324,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [AE, E, G, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -1345,7 +1355,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxBasisAllowanceRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate added {DateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ChargeIndicator modifying element: old: {IndicatorType}{1..1} in type {TradeAllowanceChargeType}new: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} changed cardinality from 1..1 to 0..1 @@ -1354,6 +1364,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/PrepaidIndicator added {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listAgencyID added @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/SequenceNumeric added {NumericType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/TypeCode added {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType} diff --git a/src/test/resources/references/report_FACTUR-X_EN16931_to_CrossIndustryInvoice_100pD22B.txt b/src/test/resources/references/report_FACTUR-X_EN16931_to_CrossIndustryInvoice_100pD22B.txt index 88b3c52..4ac5b59 100644 --- a/src/test/resources/references/report_FACTUR-X_EN16931_to_CrossIndustryInvoice_100pD22B.txt +++ b/src/test/resources/references/report_FACTUR-X_EN16931_to_CrossIndustryInvoice_100pD22B.txt @@ -2819,6 +2819,7 @@ Modifying attribute: Changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentType Changed cardinality from 1..1 to 0..1 Changed enumeration from [] to [102, 203, 205, 209, 502, 602] + added: [102, 203, 205, 209, 502, 602] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/FormattedIssueDateTime/DateTimeString/@format at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/FormattedIssueDateTime/DateTimeString/@format at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/FormattedIssueDateTime/DateTimeString/@format @@ -2976,6 +2977,8 @@ Modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [AE, E, G, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] + added: [A, AA, AB, AC, AD, B, C, D, F, H, I, J, N] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode @@ -3025,6 +3028,8 @@ Modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType} new: {CountryIDType}{0..1} in type {TradeAddressType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + removed: [1A, XI] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID @@ -3085,6 +3090,18 @@ Modifying element: Changed cardinality from 0..1 to 0..* at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/DirectDebitMandateID +Modifying element: + old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + Changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] + added: [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + Modifying element: old: {AmountType}{1..1} in type {TradeSettlementHeaderMonetarySummationType} new: {AmountType}{0..*} in type {TradeSettlementHeaderMonetarySummationType} @@ -3109,6 +3126,13 @@ Modifying element: Changed cardinality from 1..1 to 0..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PayerPartyDebtorFinancialAccount/IBANID +Modifying element: + old: {CountryIDType}{0..1} in type {TradeCountryType} + new: {CountryIDType}{0..1} in type {TradeCountryType} + Changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + removed: [1A, XI] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID + Modifying element: old: {IDType}{1..1} in type {DocumentContextParameterType} new: {IDType}{0..1} in type {DocumentContextParameterType} @@ -3160,6 +3184,8 @@ Modifying element: old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode Modifying element: @@ -3230,6 +3256,16 @@ Modifying element: Changed cardinality from 0..1 to 0..* at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentReference +Modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + Changed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 69, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 101] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode + Modifying element: old: {TradeAccountingAccountType}{0..1} in type {HeaderTradeSettlementType} new: {TradeAccountingAccountType}{0..*} in type {HeaderTradeSettlementType} @@ -3242,6 +3278,21 @@ Modifying element: Changed cardinality from 0..1 to 0..* at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount +Modifying element: + old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + Changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode + Modifying element: old: {AmountType}{0..1} in type {TradeSettlementHeaderMonetarySummationType} new: {AmountType}{0..*} in type {TradeSettlementHeaderMonetarySummationType} @@ -3319,6 +3370,13 @@ Modifying element: Changed cardinality from 1..1 to 0..* at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementHeaderMonetarySummation/TaxBasisTotalAmount +Modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode + Modifying element: old: {AmountType}{0..2} in type {TradeSettlementHeaderMonetarySummationType} new: {AmountType}{0..*} in type {TradeSettlementHeaderMonetarySummationType} @@ -3331,10 +3389,27 @@ Modifying element: Changed cardinality from 0..1 to 0..* at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementHeaderMonetarySummation/TotalPrepaidAmount +Modifying element: + old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType} + new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType} + Changed enumeration from [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 205, 206, 207, 208, 209, 210, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 382, 391, 392, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 624, 625, 626, 627, 628, 629, 630, 631, 632, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode + Modifying element: old: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 205, 206, 207, 208, 209, 210, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 382, 391, 392, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 624, 625, 626, 627, 628, 629, 630, 631, 632, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] at /CrossIndustryInvoice/ExchangedDocument/TypeCode Modifying element: @@ -3347,6 +3422,8 @@ Modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType} new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] + added: [AAO, AAP] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode @@ -3380,8 +3457,8 @@ ELEMENTS: Added elements in XSD: 444 Added elements in XML: 938 - Modified elements in XSD: 71 - Modified elements in XML: 149 + Modified elements in XSD: 77 + Modified elements in XML: 179 Removed elements from XSD: 0 Removed elements from XML: 0 diff --git a/src/test/resources/references/report_FACTUR-X_EN16931_to_CrossIndustryInvoice_100pD22B_onlyExtensionsReport.txt b/src/test/resources/references/report_FACTUR-X_EN16931_to_CrossIndustryInvoice_100pD22B_onlyExtensionsReport.txt index 6e82171..1915f18 100644 --- a/src/test/resources/references/report_FACTUR-X_EN16931_to_CrossIndustryInvoice_100pD22B_onlyExtensionsReport.txt +++ b/src/test/resources/references/report_FACTUR-X_EN16931_to_CrossIndustryInvoice_100pD22B_onlyExtensionsReport.txt @@ -134,6 +134,8 @@ In type {ExchangedDocumentType} modifying element: old: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} Extended cardinality from 1..1 to 0..1 + Extended enumeration from [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 205, 206, 207, 208, 209, 210, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 382, 391, 392, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 624, 625, 626, 627, 628, 629, 630, 631, 632, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] In type {FormattedDateTimeType} modifying attribute: old: @format{FormattedDateTimeFormatContentType}{1..1} in type {FormattedDateTimeType} new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} @@ -213,6 +215,8 @@ In type {HeaderTradeSettlementType} modifying element: old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} Extended cardinality from 1..1 to 0..1 + Extended enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] In type {HeaderTradeSettlementType} modifying element: old: {ReferencedDocumentType}{0..1} in type {HeaderTradeSettlementType} new: {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} @@ -237,6 +241,11 @@ In type {HeaderTradeSettlementType} modifying element: old: {TradeSettlementPaymentMeansType}{0..1} in type {HeaderTradeSettlementType} new: {TradeSettlementPaymentMeansType}{0..*} in type {HeaderTradeSettlementType} Extended cardinality from 0..1 to 0..* +In type {HeaderTradeSettlementType} modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Extended enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] In type {IDType} added @schemeAgencyID {token}{0..1} In type {IDType} added @schemeAgencyName {string}{0..1} In type {IDType} added @schemeDataURI {anyURI}{0..1} @@ -394,6 +403,16 @@ In type {ReferencedDocumentType} modifying element: old: {TextType}{0..1} in type {ReferencedDocumentType} new: {TextType}{0..*} in type {ReferencedDocumentType} Extended cardinality from 0..1 to 0..* +In type {ReferencedDocumentType} modifying element: + old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + Extended enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147] +In type {ReferencedDocumentType} modifying element: + old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType} + new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType} + Extended enumeration from [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 205, 206, 207, 208, 209, 210, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 382, 391, 392, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 624, 625, 626, 627, 628, 629, 630, 631, 632, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] In type {SpecifiedPeriodType} added {DateTimeType}{0..1} In type {SpecifiedPeriodType} added {IndicatorType}{0..1} In type {SpecifiedPeriodType} added {TextType}{0..*} @@ -502,6 +521,11 @@ In type {TradeAllowanceChargeType} modifying element: old: {IndicatorType}{1..1} in type {TradeAllowanceChargeType} new: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} Extended cardinality from 1..1 to 0..1 +In type {TradeAllowanceChargeType} modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + Extended enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 69, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 101] In type {TradeContactType} added {UniversalCommunicationType}{0..1} In type {TradeContactType} added {UniversalCommunicationType}{0..1} In type {TradeContactType} added {IDType}{0..1} @@ -774,8 +798,17 @@ In type {TradeTaxType} modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} Extended cardinality from 1..1 to 0..1 + Extended enumeration from [AE, E, G, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] + added: [A, AA, AB, AC, AD, B, C, D, F, H, I, J, N] +In type {TradeTaxType} modifying element: + old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + Extended enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] + added: [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] In type {TradeTaxType} modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType} new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} Extended cardinality from 1..1 to 0..1 + Extended enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] + added: [AAO, AAP] In type {UniversalCommunicationType} added {CommunicationChannelCodeType}{0..1} diff --git a/src/test/resources/references/report_FACTUR-X_EN16931_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt b/src/test/resources/references/report_FACTUR-X_EN16931_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt index b756ad6..878929c 100644 --- a/src/test/resources/references/report_FACTUR-X_EN16931_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt +++ b/src/test/resources/references/report_FACTUR-X_EN16931_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt @@ -2,3 +2,33 @@ In type {FormattedDateTimeType} modifying attribute: old: @format{FormattedDateTimeFormatContentType}{1..1} in type {FormattedDateTimeType} new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} New restriction by enumeration from [] to [102, 203, 205, 209, 502, 602] +In type {HeaderTradeSettlementType} modifying element: + old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Narrowed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + removed: [SLL] +In type {HeaderTradeSettlementType} modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Narrowed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + removed: [SLL] +In type {ReferencedDocumentType} modifying element: + old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + Narrowed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] + removed: [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP] +In type {TradeAddressType} modifying element: + old: {CountryIDType}{1..1} in type {TradeAddressType} + new: {CountryIDType}{0..1} in type {TradeAddressType} + Narrowed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + removed: [1A, XI] +In type {TradeAllowanceChargeType} modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + Narrowed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] + removed: [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, 105] +In type {TradeCountryType} modifying element: + old: {CountryIDType}{0..1} in type {TradeCountryType} + new: {CountryIDType}{0..1} in type {TradeCountryType} + Narrowed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + removed: [1A, XI] diff --git a/src/test/resources/references/report_FACTUR-X_EN16931_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt b/src/test/resources/references/report_FACTUR-X_EN16931_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt index f7c43e2..4de8957 100644 --- a/src/test/resources/references/report_FACTUR-X_EN16931_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt +++ b/src/test/resources/references/report_FACTUR-X_EN16931_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt @@ -41,7 +41,7 @@ /CrossIndustryInvoice/ExchangedDocument/RevisionID added {IDType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/SignatoryDocumentAuthentication added {DocumentAuthenticationType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/SubtypeCode added {CodeType}{0..1} in type {ExchangedDocumentType} -/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{1..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{1..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} changed cardinality from 1..1 to 0..1changed enumeration from [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/ExchangedDocument/VersionID added {IDType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocumentContext/ApplicationSpecifiedDocumentContextParameter added {DocumentContextParameterType}{0..*} in type {ExchangedDocumentContextType} @@ -106,12 +106,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -156,12 +158,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -238,7 +242,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -336,12 +340,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -395,12 +401,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -472,7 +480,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -601,7 +609,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -729,12 +737,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -778,12 +788,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -857,7 +869,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -935,11 +947,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [AE, E, G, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -964,7 +977,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TaxPointDate/Date added {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{1..1} in type {DateType}new: @format{string}{0..1} in type {DateType} changed cardinality from 1..1 to 0..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/BillingSpecifiedPeriod/CompleteDateTime added {DateTimeType}{0..1} in type {SpecifiedPeriodType} @@ -998,7 +1011,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument added {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument added {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange added {TradeCurrencyExchangeType}{0..1} in type {HeaderTradeSettlementType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} changed cardinality from 1..1 to 0..1changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listAgencyID added @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceDateTime added {DateTimeType}{0..1} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceIssuerReference added {TextType}{0..1} in type {HeaderTradeSettlementType} @@ -1037,12 +1050,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -1119,7 +1134,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -1226,11 +1241,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [AE, E, G, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -1255,7 +1271,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/Date added {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{1..1} in type {DateType}new: @format{string}{0..1} in type {DateType} changed cardinality from 1..1 to 0..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ChargeIndicator modifying element: old: {IndicatorType}{1..1} in type {TradeAllowanceChargeType}new: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} changed cardinality from 1..1 to 0..1 @@ -1264,6 +1280,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/PrepaidIndicator added {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listAgencyID added @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/SequenceNumeric added {NumericType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/TypeCode added {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType} @@ -1415,6 +1432,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode/@listAgencyID added @listAgencyID {PaymentMeansCodeListAgencyIDContentType}{0..1} in type {PaymentMeansCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SubtotalCalculatedTradeTax added {TradeTaxType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange added {TradeCurrencyExchangeType}{0..1} in type {HeaderTradeSettlementType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode/@listAgencyID added @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty added {TradePartyType}{0..1} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem modifying element: old: {SupplyChainTradeLineItemType}{1..*} in type {SupplyChainTradeTransactionType}new: {SupplyChainTradeLineItemType}{0..*} in type {SupplyChainTradeTransactionType} changed cardinality from 1..* to 0..* @@ -1487,12 +1505,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -1524,11 +1544,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [AE, E, G, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -1553,7 +1574,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/Date added {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{1..1} in type {DateType}new: @format{string}{0..1} in type {DateType} changed cardinality from 1..1 to 0..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ChargeIndicator modifying element: old: {IndicatorType}{1..1} in type {TradeAllowanceChargeType}new: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} changed cardinality from 1..1 to 0..1 @@ -1562,6 +1583,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/PrepaidIndicator added {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listAgencyID added @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/SequenceNumeric added {NumericType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode added {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType} @@ -1607,11 +1629,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [AE, E, G, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -1636,7 +1659,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/Date added {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{1..1} in type {DateType}new: @format{string}{0..1} in type {DateType} changed cardinality from 1..1 to 0..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ChargeIndicator modifying element: old: {IndicatorType}{1..1} in type {TradeAllowanceChargeType}new: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} changed cardinality from 1..1 to 0..1 @@ -1645,6 +1668,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/PrepaidIndicator added {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listAgencyID added @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/SequenceNumeric added {NumericType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode added {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType} @@ -1738,12 +1762,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [50, 80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 916, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -1764,11 +1790,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [AE, E, G, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -1793,7 +1820,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TaxPointDate/Date added {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{1..1} in type {DateType}new: @format{string}{0..1} in type {DateType} changed cardinality from 1..1 to 0..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/BillingSpecifiedPeriod/CompleteDateTime added {DateTimeType}{0..1} in type {SpecifiedPeriodType} @@ -1853,11 +1880,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [AE, E, G, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -1882,7 +1910,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/Date added {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{1..1} in type {DateType}new: @format{string}{0..1} in type {DateType} changed cardinality from 1..1 to 0..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{1..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ChargeIndicator modifying element: old: {IndicatorType}{1..1} in type {TradeAllowanceChargeType}new: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} changed cardinality from 1..1 to 0..1 @@ -1891,6 +1919,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/PrepaidIndicator added {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listAgencyID added @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/SequenceNumeric added {NumericType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/TypeCode added {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType} @@ -2006,6 +2035,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/Name/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/NetVolumeMeasure added {MeasureType}{0..1} in type {TradeProductType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/NetWeightMeasure added {MeasureType}{0..1} in type {TradeProductType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/Name added {TextType}{0..*} in type {TradeCountryType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/SubordinateTradeCountrySubDivision added {TradeCountrySubDivisionType}{0..*} in type {TradeCountryType} diff --git a/src/test/resources/references/report_FACTUR-X_EXTENDED_to_CrossIndustryInvoice_100pD22B.txt b/src/test/resources/references/report_FACTUR-X_EXTENDED_to_CrossIndustryInvoice_100pD22B.txt index a5dd110..a262445 100644 --- a/src/test/resources/references/report_FACTUR-X_EXTENDED_to_CrossIndustryInvoice_100pD22B.txt +++ b/src/test/resources/references/report_FACTUR-X_EXTENDED_to_CrossIndustryInvoice_100pD22B.txt @@ -5801,6 +5801,7 @@ Modifying attribute: Changed type from FormattedDateTimeFormatContentType to TimePointFormatCodeContentType Changed cardinality from 1..1 to 0..1 Changed enumeration from [] to [102, 203, 205, 209, 502, 602] + added: [102, 203, 205, 209, 502, 602] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/FormattedIssueDateTime/DateTimeString/@format at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/FormattedIssueDateTime/DateTimeString/@format at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/FormattedIssueDateTime/DateTimeString/@format @@ -6027,6 +6028,8 @@ Modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] + added: [N] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CategoryCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode @@ -6092,6 +6095,8 @@ Modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType} new: {CountryIDType}{0..1} in type {TradeAddressType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + removed: [1A, XI] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CountryID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID @@ -6131,6 +6136,8 @@ Modifying element: old: {DeliveryTermsCodeType}{1..1} in type {TradeDeliveryTermsType} new: {DeliveryTermsCodeType}{0..1} in type {TradeDeliveryTermsType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [1, 2, CFR, CIF, CIP, CPT, DAP, DAT, DDP, EXW, FAS, FCA, FOB] to [1, 2, CFR, CIF, CIP, CPT, DAP, DDP, DPU, EXW, FAS, FCA, FOB] + added: [DPU] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode Modifying element: @@ -6199,6 +6206,22 @@ Modifying element: Changed cardinality from 0..1 to 0..* at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/DirectDebitMandateID +Modifying element: + old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + Changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] + added: [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode + Modifying element: old: {AmountType}{1..1} in type {TradeSettlementHeaderMonetarySummationType} new: {AmountType}{0..*} in type {TradeSettlementHeaderMonetarySummationType} @@ -6229,6 +6252,13 @@ Modifying element: Changed cardinality from 1..1 to 0..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/PayerPartyDebtorFinancialAccount/IBANID +Modifying element: + old: {CountryIDType}{0..1} in type {TradeCountryType} + new: {CountryIDType}{0..1} in type {TradeCountryType} + Changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + removed: [1A, XI] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID + Modifying element: old: {IDType}{0..1} in type {ReferencedProductType} new: {IDType}{0..*} in type {ReferencedProductType} @@ -6311,6 +6341,8 @@ Modifying element: old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode Modifying element: @@ -6331,6 +6363,13 @@ Modifying element: Changed cardinality from 1..1 to 0..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/AssociatedDocumentLineDocument/LineID +Modifying element: + old: {LineStatusCodeType}{0..1} in type {DocumentLineDocumentType} + new: {LineStatusCodeType}{0..1} in type {DocumentLineDocumentType} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/AssociatedDocumentLineDocument/LineStatusCode + Modifying element: old: {AmountType}{1..1} in type {TradeSettlementHeaderMonetarySummationType} new: {AmountType}{0..*} in type {TradeSettlementHeaderMonetarySummationType} @@ -6362,6 +6401,8 @@ Modifying element: old: {TransportModeCodeType}{1..1} in type {LogisticsTransportMovementType} new: {TransportModeCodeType}{0..1} in type {LogisticsTransportMovementType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [] to [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] + added: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ModeCode Modifying element: @@ -6419,16 +6460,54 @@ Modifying element: Changed cardinality from 0..1 to 0..* at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PaymentReference +Modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + Changed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 69, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 101] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode + Modifying element: old: {TradeAccountingAccountType}{0..1} in type {LineTradeSettlementType} new: {TradeAccountingAccountType}{0..*} in type {LineTradeSettlementType} Changed cardinality from 0..1 to 0..* at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ReceivableSpecifiedTradeAccountingAccount +Modifying element: + old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + Changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode + Modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType} new: {PartyRoleCodeType}{0..*} in type {TradePartyType} Changed cardinality from 0..1 to 0..* + Changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] + added: [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/RoleCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/RoleCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/RoleCode @@ -6459,6 +6538,13 @@ Modifying element: Changed cardinality from 1..1 to 0..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty +Modifying element: + old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + Changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/SourceCurrencyCode + Modifying element: old: {LineTradeAgreementType}{1..1} in type {SupplyChainTradeLineItemType} new: {LineTradeAgreementType}{0..1} in type {SupplyChainTradeLineItemType} @@ -6496,12 +6582,26 @@ Modifying element: at /CrossIndustryInvoice/ExchangedDocument/IncludedNote/SubjectCode at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/AssociatedDocumentLineDocument/IncludedNote/SubjectCode +Modifying element: + old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + Changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/TargetCurrencyCode + Modifying element: old: {AmountType}{1..2} in type {TradeSettlementHeaderMonetarySummationType} new: {AmountType}{0..*} in type {TradeSettlementHeaderMonetarySummationType} Changed cardinality from 1..2 to 0..* at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementHeaderMonetarySummation/TaxBasisTotalAmount +Modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode + Modifying element: old: {AmountType}{0..1} in type {TradeSettlementLineMonetarySummationType} new: {AmountType}{0..*} in type {TradeSettlementLineMonetarySummationType} @@ -6526,10 +6626,61 @@ Modifying element: Changed cardinality from 0..1 to 0..* at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementHeaderMonetarySummation/TotalPrepaidAmount +Modifying element: + old: {ContactTypeCodeType}{0..1} in type {TradeContactType} + new: {ContactTypeCodeType}{0..1} in type {TradeContactType} + Changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] + added: [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TypeCode + +Modifying element: + old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType} + new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType} + Changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + added: [897, 898, 899, 900, 902, 903, 904, 905, 906, 907, 908, 909, 912] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/TypeCode + Modifying element: old: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + added: [897, 898, 899, 900, 902, 903, 904, 905, 906, 907, 908, 909, 912] at /CrossIndustryInvoice/ExchangedDocument/TypeCode Modifying element: @@ -6538,6 +6689,22 @@ Modifying element: Changed cardinality from 1..1 to 0..1 at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeSettlementPaymentMeans/TypeCode +Modifying element: + old: {TaxTypeCodeType}{0..1} in type {TradeTaxType} + new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} + Changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] + added: [AAO, AAP] + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode + at /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode + Modifying element: old: {UniversalCommunicationType}{0..1} in type {TradePartyType} new: {UniversalCommunicationType}{0..*} in type {TradePartyType} @@ -6582,8 +6749,8 @@ ELEMENTS: Added elements in XSD: 450 Added elements in XML: 1983 - Modified elements in XSD: 85 - Modified elements in XML: 263 + Modified elements in XSD: 96 + Modified elements in XML: 349 Removed elements from XSD: 0 Removed elements from XML: 0 diff --git a/src/test/resources/references/report_FACTUR-X_EXTENDED_to_CrossIndustryInvoice_100pD22B_onlyExtensionsReport.txt b/src/test/resources/references/report_FACTUR-X_EXTENDED_to_CrossIndustryInvoice_100pD22B_onlyExtensionsReport.txt index 5234f57..08f54ae 100644 --- a/src/test/resources/references/report_FACTUR-X_EXTENDED_to_CrossIndustryInvoice_100pD22B_onlyExtensionsReport.txt +++ b/src/test/resources/references/report_FACTUR-X_EXTENDED_to_CrossIndustryInvoice_100pD22B_onlyExtensionsReport.txt @@ -134,6 +134,8 @@ In type {ExchangedDocumentType} modifying element: old: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} Extended cardinality from 1..1 to 0..1 + Extended enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + added: [897, 898, 899, 900, 902, 903, 904, 905, 906, 907, 908, 909, 912] In type {FormattedDateTimeType} modifying attribute: old: @format{FormattedDateTimeFormatContentType}{1..1} in type {FormattedDateTimeType} new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} @@ -195,6 +197,8 @@ In type {HeaderTradeSettlementType} modifying element: old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} Extended cardinality from 1..1 to 0..1 + Extended enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] In type {HeaderTradeSettlementType} modifying element: old: {ReferencedDocumentType}{0..1} in type {HeaderTradeSettlementType} new: {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} @@ -207,6 +211,11 @@ In type {HeaderTradeSettlementType} modifying element: old: {TradeSettlementHeaderMonetarySummationType}{1..1} in type {HeaderTradeSettlementType} new: {TradeSettlementHeaderMonetarySummationType}{0..1} in type {HeaderTradeSettlementType} Extended cardinality from 1..1 to 0..1 +In type {HeaderTradeSettlementType} modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Extended enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] In type {IDType} added @schemeAgencyID {token}{0..1} In type {IDType} added @schemeAgencyName {string}{0..1} In type {IDType} added @schemeDataURI {anyURI}{0..1} @@ -383,6 +392,16 @@ In type {ReferencedDocumentType} modifying element: old: {BinaryObjectType}{0..1} in type {ReferencedDocumentType} new: {BinaryObjectType}{0..*} in type {ReferencedDocumentType} Extended cardinality from 0..1 to 0..* +In type {ReferencedDocumentType} modifying element: + old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + Extended enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147] +In type {ReferencedDocumentType} modifying element: + old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType} + new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType} + Extended enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + added: [897, 898, 899, 900, 902, 903, 904, 905, 906, 907, 908, 909, 912] In type {ReferencedProductType} added {IDType}{0..*} In type {ReferencedProductType} added {CodeType}{0..*} In type {ReferencedProductType} modifying element: @@ -535,6 +554,11 @@ In type {TradeAllowanceChargeType} modifying element: old: {IndicatorType}{1..1} in type {TradeAllowanceChargeType} new: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} Extended cardinality from 1..1 to 0..1 +In type {TradeAllowanceChargeType} modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + Extended enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 69, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 101] In type {TradeContactType} added {UniversalCommunicationType}{0..1} In type {TradeContactType} added {IDType}{0..1} In type {TradeContactType} added {UniversalCommunicationType}{0..1} @@ -552,6 +576,16 @@ In type {TradeCurrencyExchangeType} added {Refere In type {TradeCurrencyExchangeType} added {IDType}{0..1} In type {TradeCurrencyExchangeType} added {NumericType}{0..1} In type {TradeCurrencyExchangeType} added {NumericType}{0..1} +In type {TradeCurrencyExchangeType} modifying element: + old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + Extended enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] +In type {TradeCurrencyExchangeType} modifying element: + old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + Extended enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] In type {TradeDeliveryTermsType} added {CodeType}{0..1} In type {TradeDeliveryTermsType} added {TextType}{0..*} In type {TradeDeliveryTermsType} added {DeliveryTermsFunctionCodeType}{0..1} @@ -561,6 +595,8 @@ In type {TradeDeliveryTermsType} modifying element: old: {DeliveryTermsCodeType}{1..1} in type {TradeDeliveryTermsType} new: {DeliveryTermsCodeType}{0..1} in type {TradeDeliveryTermsType} Extended cardinality from 1..1 to 0..1 + Extended enumeration from [1, 2, CFR, CIF, CIP, CPT, DAP, DAT, DDP, EXW, FAS, FCA, FOB] to [1, 2, CFR, CIF, CIP, CPT, DAP, DDP, DPU, EXW, FAS, FCA, FOB] + added: [DPU] In type {TradePartyType} added {UniversalCommunicationType}{0..1} In type {TradePartyType} added {SpecifiedBinaryFileType}{0..*} In type {TradePartyType} added {IDType}{0..*} @@ -841,9 +877,21 @@ In type {TradeTaxType} modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType} new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} Extended cardinality from 1..1 to 0..1 + Extended enumeration from [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] + added: [N] +In type {TradeTaxType} modifying element: + old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType} + Extended enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] + added: [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] In type {TradeTaxType} modifying element: old: {AmountType}{0..1} in type {TradeTaxType} new: {AmountType}{0..*} in type {TradeTaxType} Extended cardinality from 0..1 to 0..* +In type {TradeTaxType} modifying element: + old: {TaxTypeCodeType}{0..1} in type {TradeTaxType} + new: {TaxTypeCodeType}{0..1} in type {TradeTaxType} + Extended enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] + added: [AAO, AAP] In type {TransportModeCodeType} added @listAgencyID {TransportModeCodeListAgencyIDContentType}{0..1} In type {UniversalCommunicationType} added {CommunicationChannelCodeType}{0..1} diff --git a/src/test/resources/references/report_FACTUR-X_EXTENDED_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt b/src/test/resources/references/report_FACTUR-X_EXTENDED_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt index b756ad6..8356879 100644 --- a/src/test/resources/references/report_FACTUR-X_EXTENDED_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt +++ b/src/test/resources/references/report_FACTUR-X_EXTENDED_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt @@ -1,4 +1,65 @@ +In type {DocumentLineDocumentType} modifying element: + old: {LineStatusCodeType}{0..1} in type {DocumentLineDocumentType} + new: {LineStatusCodeType}{0..1} in type {DocumentLineDocumentType} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119] In type {FormattedDateTimeType} modifying attribute: old: @format{FormattedDateTimeFormatContentType}{1..1} in type {FormattedDateTimeType} new: @format{TimePointFormatCodeContentType}{0..1} in type {FormattedDateTimeType} New restriction by enumeration from [] to [102, 203, 205, 209, 502, 602] +In type {HeaderTradeSettlementType} modifying element: + old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Narrowed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + removed: [SLL] +In type {HeaderTradeSettlementType} modifying element: + old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Narrowed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + removed: [SLL] +In type {LogisticsTransportMovementType} modifying element: + old: {TransportModeCodeType}{1..1} in type {LogisticsTransportMovementType} + new: {TransportModeCodeType}{0..1} in type {LogisticsTransportMovementType} + New restriction by enumeration from [] to [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] +In type {ReferencedDocumentType} modifying element: + old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType} + Narrowed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] + removed: [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP] +In type {TradeAddressType} modifying element: + old: {CountryIDType}{1..1} in type {TradeAddressType} + new: {CountryIDType}{0..1} in type {TradeAddressType} + Narrowed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + removed: [1A, XI] +In type {TradeAllowanceChargeType} modifying element: + old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType} + Narrowed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] + removed: [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, 105] +In type {TradeContactType} modifying element: + old: {ContactTypeCodeType}{0..1} in type {TradeContactType} + new: {ContactTypeCodeType}{0..1} in type {TradeContactType} + New restriction by enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] +In type {TradeCountryType} modifying element: + old: {CountryIDType}{0..1} in type {TradeCountryType} + new: {CountryIDType}{0..1} in type {TradeCountryType} + Narrowed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + removed: [1A, XI] +In type {TradeCurrencyExchangeType} modifying element: + old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + Narrowed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + removed: [SLL] +In type {TradeCurrencyExchangeType} modifying element: + old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType} + Narrowed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + removed: [SLL] +In type {TradeDeliveryTermsType} modifying element: + old: {DeliveryTermsCodeType}{1..1} in type {TradeDeliveryTermsType} + new: {DeliveryTermsCodeType}{0..1} in type {TradeDeliveryTermsType} + Narrowed enumeration from [1, 2, CFR, CIF, CIP, CPT, DAP, DAT, DDP, EXW, FAS, FCA, FOB] to [1, 2, CFR, CIF, CIP, CPT, DAP, DDP, DPU, EXW, FAS, FCA, FOB] + removed: [DAT] +In type {TradePartyType} modifying element: + old: {PartyRoleCodeType}{0..1} in type {TradePartyType} + new: {PartyRoleCodeType}{0..*} in type {TradePartyType} + New restriction by enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] diff --git a/src/test/resources/references/report_FACTUR-X_EXTENDED_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt b/src/test/resources/references/report_FACTUR-X_EXTENDED_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt index bb2e50f..1c5c97e 100644 --- a/src/test/resources/references/report_FACTUR-X_EXTENDED_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt +++ b/src/test/resources/references/report_FACTUR-X_EXTENDED_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt @@ -72,7 +72,7 @@ /CrossIndustryInvoice/ExchangedDocument/RevisionID added {IDType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/SignatoryDocumentAuthentication added {DocumentAuthenticationType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/SubtypeCode added {CodeType}{0..1} in type {ExchangedDocumentType} -/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{1..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{1..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} changed cardinality from 1..1 to 0..1changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/ExchangedDocument/VersionID added {IDType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocumentContext/ApplicationSpecifiedDocumentContextParameter added {DocumentContextParameterType}{0..*} in type {ExchangedDocumentContextType} @@ -136,12 +136,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -150,7 +152,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/URIID/@schemeURI added @schemeURI {anyURI}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/AdditionalReferencedDocument/URIID/@schemeVersionID added @schemeVersionID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryDiscontinuationCode added {CodeType}{0..1} in type {TradeDeliveryTermsType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode modifying element: old: {DeliveryTermsCodeType}{1..1} in type {TradeDeliveryTermsType}new: {DeliveryTermsCodeType}{0..1} in type {TradeDeliveryTermsType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode modifying element: old: {DeliveryTermsCodeType}{1..1} in type {TradeDeliveryTermsType}new: {DeliveryTermsCodeType}{0..1} in type {TradeDeliveryTermsType} changed cardinality from 1..1 to 0..1changed enumeration from [1, 2, CFR, CIF, CIP, CPT, DAP, DAT, DDP, EXW, FAS, FCA, FOB] to [1, 2, CFR, CIF, CIP, CPT, DAP, DDP, DPU, EXW, FAS, FCA, FOB] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/DeliveryTypeCode/@listAgencyID added @listAgencyID {DeliveryTermsCodeListAgencyIDContentType}{0..1} in type {DeliveryTermsCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/Description added {TextType}{0..*} in type {TradeDeliveryTermsType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ApplicableTradeDeliveryTerms/FunctionCode added {DeliveryTermsFunctionCodeType}{0..1} in type {TradeDeliveryTermsType} @@ -197,6 +199,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeURI added @schemeURI {anyURI}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeVersionID added @schemeVersionID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/TypeCode/@listAgencyID added @listAgencyID {ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/Description modifying element: old: {TextType}{0..1} in type {TradePartyType}new: {TextType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* @@ -227,7 +230,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -255,7 +258,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/Role added {TextType}{0..*} in type {TradePartyType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..*changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/RoleCode/@listAgencyID added @listAgencyID {PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/AuthorizedLegalRegistration added {LegalRegistrationType}{0..*} in type {LegalOrganizationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/ID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} @@ -275,7 +278,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -358,12 +361,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerOrderReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -415,6 +420,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeURI added @schemeURI {anyURI}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeVersionID added @schemeVersionID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TelexUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/TypeCode/@listAgencyID added @listAgencyID {ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/DefinedTradeContact/VOIPUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/Description modifying element: old: {TextType}{0..1} in type {TradePartyType}new: {TextType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* @@ -445,7 +451,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -473,7 +479,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/Role added {TextType}{0..*} in type {TradePartyType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..*changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/RoleCode/@listAgencyID added @listAgencyID {PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/AuthorizedLegalRegistration added {LegalRegistrationType}{0..*} in type {LegalOrganizationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/ID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} @@ -493,7 +499,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -584,6 +590,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeURI added @schemeURI {anyURI}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeVersionID added @schemeVersionID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TelexUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID added @listAgencyID {ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/DefinedTradeContact/VOIPUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/Description modifying element: old: {TextType}{0..1} in type {TradePartyType}new: {TextType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* @@ -614,7 +621,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -642,7 +649,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..*changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/RoleCode/@listAgencyID added @listAgencyID {PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/AuthorizedLegalRegistration added {LegalRegistrationType}{0..*} in type {LegalOrganizationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/ID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} @@ -662,7 +669,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -744,12 +751,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ContractReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -802,6 +811,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeURI added @schemeURI {anyURI}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeVersionID added @schemeVersionID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TelexUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/TypeCode/@listAgencyID added @listAgencyID {ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/DefinedTradeContact/VOIPUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/Description modifying element: old: {TextType}{0..1} in type {TradePartyType}new: {TextType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* @@ -832,7 +842,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -860,7 +870,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/Role added {TextType}{0..*} in type {TradePartyType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..*changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/RoleCode/@listAgencyID added @listAgencyID {PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/AuthorizedLegalRegistration added {LegalRegistrationType}{0..*} in type {LegalOrganizationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/ID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} @@ -880,7 +890,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/ProductEndUserTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -964,12 +974,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/QuotationReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -1020,6 +1032,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeURI added @schemeURI {anyURI}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeVersionID added @schemeVersionID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TelexUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/TypeCode/@listAgencyID added @listAgencyID {ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/DefinedTradeContact/VOIPUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/Description modifying element: old: {TextType}{0..1} in type {TradePartyType}new: {TextType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* @@ -1050,7 +1063,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -1078,7 +1091,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/Role added {TextType}{0..*} in type {TradePartyType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..*changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/RoleCode/@listAgencyID added @listAgencyID {PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/AuthorizedLegalRegistration added {LegalRegistrationType}{0..*} in type {LegalOrganizationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/ID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} @@ -1098,7 +1111,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SalesAgentTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -1181,12 +1194,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerOrderReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -1235,6 +1250,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeURI added @schemeURI {anyURI}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeVersionID added @schemeVersionID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TelexUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/TypeCode/@listAgencyID added @listAgencyID {ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/DefinedTradeContact/VOIPUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/Description modifying element: old: {TextType}{0..1} in type {TradePartyType}new: {TextType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* @@ -1265,7 +1281,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -1293,7 +1309,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/Role added {TextType}{0..*} in type {TradePartyType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..*changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/RoleCode/@listAgencyID added @listAgencyID {PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/AuthorizedLegalRegistration added {LegalRegistrationType}{0..*} in type {LegalOrganizationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/ID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} @@ -1313,7 +1329,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTaxRepresentativeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -1404,6 +1420,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeURI added @schemeURI {anyURI}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeVersionID added @schemeVersionID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TelexUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID added @listAgencyID {ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/DefinedTradeContact/VOIPUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/Description modifying element: old: {TextType}{0..1} in type {TradePartyType}new: {TextType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* @@ -1434,7 +1451,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -1462,7 +1479,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..*changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/RoleCode/@listAgencyID added @listAgencyID {PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/AuthorizedLegalRegistration added {LegalRegistrationType}{0..*} in type {LegalOrganizationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/ID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} @@ -1482,7 +1499,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -1574,12 +1591,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/UltimateCustomerOrderReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -1638,12 +1657,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DeliveryNoteReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -1684,12 +1705,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/DespatchAdviceReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -1732,12 +1755,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ReceivingAdviceReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -1771,7 +1796,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/Cycle added {TextType}{0..1} in type {LogisticsTransportMovementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ID added {IDType}{0..1} in type {LogisticsTransportMovementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/Mode added {TextType}{0..1} in type {LogisticsTransportMovementType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ModeCode modifying element: old: {TransportModeCodeType}{1..1} in type {LogisticsTransportMovementType}new: {TransportModeCodeType}{0..1} in type {LogisticsTransportMovementType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ModeCode modifying element: old: {TransportModeCodeType}{1..1} in type {LogisticsTransportMovementType}new: {TransportModeCodeType}{0..1} in type {LogisticsTransportMovementType} changed cardinality from 1..1 to 0..1changed enumeration from [] to [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ModeCode/@listAgencyID added @listAgencyID {TransportModeCodeListAgencyIDContentType}{0..1} in type {TransportModeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/Service added {TextType}{0..1} in type {LogisticsTransportMovementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/RelatedSupplyChainConsignment/SpecifiedLogisticsTransportMovement/ServiceCode added {CodeType}{0..1} in type {LogisticsTransportMovementType} @@ -1824,6 +1849,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeURI added @schemeURI {anyURI}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeVersionID added @schemeVersionID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TelexUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/TypeCode/@listAgencyID added @listAgencyID {ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/DefinedTradeContact/VOIPUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/Description modifying element: old: {TextType}{0..1} in type {TradePartyType}new: {TextType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* @@ -1854,7 +1880,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -1882,7 +1908,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/Role added {TextType}{0..*} in type {TradePartyType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..*changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/RoleCode/@listAgencyID added @listAgencyID {PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/AuthorizedLegalRegistration added {LegalRegistrationType}{0..*} in type {LegalOrganizationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/ID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} @@ -1902,7 +1928,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipFromTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -1992,6 +2018,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeURI added @schemeURI {anyURI}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeVersionID added @schemeVersionID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/TypeCode/@listAgencyID added @listAgencyID {ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/Description modifying element: old: {TextType}{0..1} in type {TradePartyType}new: {TextType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* @@ -2022,7 +2049,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -2050,7 +2077,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/Role added {TextType}{0..*} in type {TradePartyType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..*changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/RoleCode/@listAgencyID added @listAgencyID {PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/AuthorizedLegalRegistration added {LegalRegistrationType}{0..*} in type {LegalOrganizationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/ID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} @@ -2070,7 +2097,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -2160,6 +2187,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeURI added @schemeURI {anyURI}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeVersionID added @schemeVersionID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TypeCode/@listAgencyID added @listAgencyID {ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/Description modifying element: old: {TextType}{0..1} in type {TradePartyType}new: {TextType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* @@ -2190,7 +2218,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -2218,7 +2246,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/Role added {TextType}{0..*} in type {TradePartyType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..*changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/RoleCode/@listAgencyID added @listAgencyID {PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/AuthorizedLegalRegistration added {LegalRegistrationType}{0..*} in type {LegalOrganizationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/ID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} @@ -2238,7 +2266,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -2301,11 +2329,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -2331,6 +2360,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TaxPointDate/Date added {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{1..1} in type {DateType}new: @format{string}{0..1} in type {DateType} changed cardinality from 1..1 to 0..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/ApplicableTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/BillingSpecifiedPeriod/CompleteDateTime/DateTime added {dateTime}{0..1} in type {DateTimeType} @@ -2367,7 +2397,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument added {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument added {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange added {TradeCurrencyExchangeType}{0..1} in type {HeaderTradeSettlementType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} changed cardinality from 1..1 to 0..1changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listAgencyID added @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceDateTime added {DateTimeType}{0..1} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceIssuerReference/@languageID added @languageID {token}{0..1} in type {TextType} @@ -2406,12 +2436,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -2460,6 +2492,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeURI added @schemeURI {anyURI}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeVersionID added @schemeVersionID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TelexUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/TypeCode/@listAgencyID added @listAgencyID {ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/DefinedTradeContact/VOIPUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/Description modifying element: old: {TextType}{0..1} in type {TradePartyType}new: {TextType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* @@ -2490,7 +2523,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -2518,7 +2551,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/Role added {TextType}{0..*} in type {TradePartyType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..*changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/RoleCode/@listAgencyID added @listAgencyID {PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/AuthorizedLegalRegistration added {LegalRegistrationType}{0..*} in type {LegalOrganizationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/ID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} @@ -2538,7 +2571,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -2628,6 +2661,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeURI added @schemeURI {anyURI}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeVersionID added @schemeVersionID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TelexUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID added @listAgencyID {ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/DefinedTradeContact/VOIPUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/Description modifying element: old: {TextType}{0..1} in type {TradePartyType}new: {TextType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* @@ -2658,7 +2692,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -2686,7 +2720,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..*changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/RoleCode/@listAgencyID added @listAgencyID {PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/AuthorizedLegalRegistration added {LegalRegistrationType}{0..*} in type {LegalOrganizationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/ID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} @@ -2706,7 +2740,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoicerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -2799,6 +2833,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeURI added @schemeURI {anyURI}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeVersionID added @schemeVersionID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/TypeCode/@listAgencyID added @listAgencyID {ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/Description modifying element: old: {TextType}{0..1} in type {TradePartyType}new: {TextType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* @@ -2829,7 +2864,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -2857,7 +2892,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/Role added {TextType}{0..*} in type {TradePartyType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..*changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/RoleCode/@listAgencyID added @listAgencyID {PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/AuthorizedLegalRegistration added {LegalRegistrationType}{0..*} in type {LegalOrganizationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/ID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} @@ -2877,7 +2912,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -2967,6 +3002,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeURI added @schemeURI {anyURI}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeVersionID added @schemeVersionID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TelexUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/TypeCode/@listAgencyID added @listAgencyID {ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/DefinedTradeContact/VOIPUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/Description modifying element: old: {TextType}{0..1} in type {TradePartyType}new: {TextType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* @@ -2997,7 +3033,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -3025,7 +3061,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/Role added {TextType}{0..*} in type {TradePartyType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..*changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/RoleCode/@listAgencyID added @listAgencyID {PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/AuthorizedLegalRegistration added {LegalRegistrationType}{0..*} in type {LegalOrganizationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/ID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} @@ -3045,7 +3081,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/PayerTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -3128,11 +3164,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -3158,6 +3195,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/TaxPointDate/Date added {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{1..1} in type {DateType}new: @format{string}{0..1} in type {DateType} changed cardinality from 1..1 to 0..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/IncludedTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedAdvancePayment/InvoiceSpecifiedReferencedDocument added {ReferencedDocumentType}{0..*} in type {AdvancePaymentType} @@ -3181,11 +3219,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -3211,6 +3250,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TaxPointDate/Date added {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{1..1} in type {DateType}new: @format{string}{0..1} in type {DateType} changed cardinality from 1..1 to 0..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/AppliedTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedLogisticsServiceCharge/CalculationBasis added {TextType}{0..1} in type {LogisticsServiceChargeType} @@ -3249,11 +3289,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -3279,6 +3320,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/Date added {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{1..1} in type {DateType}new: @format{string}{0..1} in type {DateType} changed cardinality from 1..1 to 0..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ChargeIndicator modifying element: old: {IndicatorType}{1..1} in type {TradeAllowanceChargeType}new: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} changed cardinality from 1..1 to 0..1 @@ -3287,6 +3329,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/PrepaidIndicator added {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listAgencyID added @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/TypeCode added {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradeAllowanceCharge/UnitBasisAmount added {AmountType}{0..1} in type {TradeAllowanceChargeType} @@ -3362,6 +3405,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeURI added @schemeURI {anyURI}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeVersionID added @schemeVersionID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TelexUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/TypeCode/@listAgencyID added @listAgencyID {ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/DefinedTradeContact/VOIPUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/Description modifying element: old: {TextType}{0..1} in type {TradePartyType}new: {TextType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* @@ -3392,7 +3436,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -3420,7 +3464,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/Role added {TextType}{0..*} in type {TradePartyType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..*changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/RoleCode/@listAgencyID added @listAgencyID {PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/AuthorizedLegalRegistration added {LegalRegistrationType}{0..*} in type {LegalOrganizationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/ID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} @@ -3440,7 +3484,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/SpecifiedTradePaymentTerms/PayeeTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -3615,10 +3659,13 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/ConversionRateDateTime/DateTime added {dateTime}{0..1} in type {DateTimeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/ConversionRateDateTime/DateTimeString/@format modifying attribute: old: @format{string}{1..1} in type {DateTimeType}new: @format{string}{0..1} in type {DateTimeType} changed cardinality from 1..1 to 0..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/MarketID added {IDType}{0..1} in type {TradeCurrencyExchangeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/SourceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/SourceCurrencyCode/@listAgencyID added @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/SourceUnitBasisNumeric added {NumericType}{0..1} in type {TradeCurrencyExchangeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/TargetCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}new: {CurrencyCodeType}{1..1} in type {TradeCurrencyExchangeType}changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/TargetCurrencyCode/@listAgencyID added @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxApplicableTradeCurrencyExchange/TargetUnitBaseNumeric added {NumericType}{0..1} in type {TradeCurrencyExchangeType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode modifying element: old: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType}changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/TaxCurrencyCode/@listAgencyID added @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/UltimatePayeeTradeParty added {TradePartyType}{0..1} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem modifying element: old: {SupplyChainTradeLineItemType}{1..*} in type {SupplyChainTradeTransactionType}new: {SupplyChainTradeLineItemType}{0..*} in type {SupplyChainTradeTransactionType} changed cardinality from 1..* to 0..* @@ -3652,6 +3699,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/AssociatedDocumentLineDocument/LineID/@schemeName added @schemeName {string}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/AssociatedDocumentLineDocument/LineID/@schemeURI added @schemeURI {anyURI}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/AssociatedDocumentLineDocument/LineID/@schemeVersionID added @schemeVersionID {token}{0..1} in type {IDType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/AssociatedDocumentLineDocument/LineStatusCode modifying element: old: {LineStatusCodeType}{0..1} in type {DocumentLineDocumentType}new: {LineStatusCodeType}{0..1} in type {DocumentLineDocumentType}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/AssociatedDocumentLineDocument/LineStatusCode/@listAgencyID added @listAgencyID {LineStatusCodeListAgencyIDContentType}{0..1} in type {LineStatusCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/AssociatedDocumentLineDocument/LineStatusReasonCode/@languageID added @languageID {token}{0..1} in type {CodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/AssociatedDocumentLineDocument/LineStatusReasonCode/@listAgencyID added @listAgencyID {token}{0..1} in type {CodeType} @@ -3704,12 +3752,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/AdditionalReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -3751,12 +3801,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/BuyerOrderReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -3799,12 +3851,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/ContractReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -3835,11 +3889,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -3865,6 +3920,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/Date added {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{1..1} in type {DateType}new: @format{string}{0..1} in type {DateType} changed cardinality from 1..1 to 0..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ChargeIndicator modifying element: old: {IndicatorType}{1..1} in type {TradeAllowanceChargeType}new: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} changed cardinality from 1..1 to 0..1 @@ -3873,6 +3929,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/PrepaidIndicator added {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listAgencyID added @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode added {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/AppliedTradeAllowanceCharge/UnitBasisAmount added {AmountType}{0..1} in type {TradeAllowanceChargeType} @@ -3899,11 +3956,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -3929,6 +3987,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TaxPointDate/Date added {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{1..1} in type {DateType}new: @format{string}{0..1} in type {DateType} changed cardinality from 1..1 to 0..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/IncludedTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/GrossPriceProductTradePrice/MaximumQuantity added {QuantityType}{0..1} in type {TradePriceType} @@ -3964,11 +4023,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -3994,6 +4054,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/Date added {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{1..1} in type {DateType}new: @format{string}{0..1} in type {DateType} changed cardinality from 1..1 to 0..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/CategoryTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ChargeIndicator modifying element: old: {IndicatorType}{1..1} in type {TradeAllowanceChargeType}new: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} changed cardinality from 1..1 to 0..1 @@ -4002,6 +4063,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/PrepaidIndicator added {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/Reason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/ReasonCode/@listAgencyID added @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/TypeCode added {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/AppliedTradeAllowanceCharge/UnitBasisAmount added {AmountType}{0..1} in type {TradeAllowanceChargeType} @@ -4028,11 +4090,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -4058,6 +4121,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TaxPointDate/Date added {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{1..1} in type {DateType}new: @format{string}{0..1} in type {DateType} changed cardinality from 1..1 to 0..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/IncludedTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/NetPriceProductTradePrice/MaximumQuantity added {QuantityType}{0..1} in type {TradePriceType} @@ -4101,12 +4165,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/QuotationReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -4149,12 +4215,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeAgreement/UltimateCustomerOrderReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -4221,12 +4289,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DeliveryNoteReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -4267,12 +4337,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/DespatchAdviceReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -4324,12 +4396,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ReceivingAdviceReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -4382,6 +4456,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeURI added @schemeURI {anyURI}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeVersionID added @schemeVersionID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/TypeCode/@listAgencyID added @listAgencyID {ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/Description modifying element: old: {TextType}{0..1} in type {TradePartyType}new: {TextType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* @@ -4412,7 +4487,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -4440,7 +4515,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/Role added {TextType}{0..*} in type {TradePartyType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..*changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/RoleCode/@listAgencyID added @listAgencyID {PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/AuthorizedLegalRegistration added {LegalRegistrationType}{0..*} in type {LegalOrganizationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/ID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} @@ -4460,7 +4535,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/ShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -4552,6 +4627,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeURI added @schemeURI {anyURI}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelephoneUniversalCommunication/URIID/@schemeVersionID added @schemeVersionID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TelexUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TypeCode modifying element: old: {ContactTypeCodeType}{0..1} in type {TradeContactType}new: {ContactTypeCodeType}{0..1} in type {TradeContactType}changed enumeration from [] to [AA, AB, AC, AD, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BR, BS, BT, BU, CA, CB, CC, CD, CE, CF, CG, CN, CO, CP, CR, CW, DE, DI, DL, EB, EC, ED, EX, GR, HE, HG, HM, IC, IN, LB, LO, MC, MD, MH, MR, MS, NT, OC, PA, PD, PE, PM, QA, QC, RD, RP, SA, SC, SD, SR, SU, TA, TD, TI, TR, WH, WI, WJ, WK, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/TypeCode/@listAgencyID added @listAgencyID {ContactTypeCodeListAgencyIDContentType}{0..1} in type {ContactTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/DefinedTradeContact/VOIPUniversalCommunication added {UniversalCommunicationType}{0..1} in type {TradeContactType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/Description modifying element: old: {TextType}{0..1} in type {TradePartyType}new: {TextType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* @@ -4582,7 +4658,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -4610,7 +4686,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/PostalTradeAddress/TypeCode added {AddressTypeCodeType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/RegisteredID added {IDType}{0..*} in type {TradePartyType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/Role added {TextType}{0..*} in type {TradePartyType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..* +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/RoleCode modifying element: old: {PartyRoleCodeType}{0..1} in type {TradePartyType}new: {PartyRoleCodeType}{0..*} in type {TradePartyType} changed cardinality from 0..1 to 0..*changed enumeration from [] to [AA, AB, AE, AF, AG, AH, AI, AJ, AK, AL, AM, AN, AO, AP, AQ, AR, AS, AT, AU, AV, AW, AX, AY, AZ, B1, B2, BA, BB, BC, BD, BE, BF, BG, BH, BI, BJ, BK, BL, BM, BN, BO, BP, BQ, BS, BT, BU, BV, BW, BX, BY, BZ, C1, C2, CA, CB, CC, CD, CE, CF, CG, CH, CI, CJ, CK, CL, CM, CN, CNX, CNY, CNZ, CO, COA, COB, COC, COD, COE, COF, COG, COH, COI, COJ, COK, COL, COM, CON, COO, COP, COQ, COR, COS, COT, COU, COV, COW, COX, COY, COZ, CP, CPA, CPB, CPC, CPD, CPE, CPF, CPG, CPH, CPI, CPJ, CPK, CPL, CPM, CPN, CPO, CQ, CR, CS, CT, CU, CV, CW, CX, CY, CZ, DA, DB, DC, DCP, DCQ, DCR, DCS, DCT, DCU, DCV, DCW, DCX, DCY, DCZ, DD, DDA, DDB, DDC, DDD, DDE, DDF, DDG, DDH, DDI, DDJ, DDK, DDL, DDM, DDN, DDO, DDP, DDQ, DDR, DDS, DDT, DDU, DDV, DDW, DDX, DDY, DDZ, DE, DEA, DEB, DEC, DED, DEE, DEF, DEG, DEH, DEI, DEJ, DEK, DEL, DEM, DEN, DEO, DEP, DEQ, DER, DES, DET, DEU, DEV, DEW, DEX, DEY, DEZ, DF, DFA, DFB, DFC, DFD, DFE, DFF, DFG, DFH, DFI, DFJ, DFK, DFL, DFM, DFN, DFO, DFP, DFQ, DFR, DFS, DFT, DFU, DFV, DFW, DFX, DFY, DFZ, DG, DGA, DGB, DGC, DGD, DGE, DGF, DGG, DGH, DGI, DGJ, DGK, DGL, DGM, DGN, DGO, DGP, DGQ, DGR, DGS, DGT, DGU, DGV, DGW, DH, DI, DJ, DK, DL, DM, DN, DO, DP, DQ, DR, DS, DT, DU, DV, DW, DX, DY, DZ, EA, EB, EC, ED, EE, EF, EG, EH, EI, EJ, EK, EL, EM, EN, EO, EP, EQ, ER, ES, ET, EU, EV, EW, EX, EY, EZ, FA, FB, FC, FD, FE, FF, FG, FH, FI, FJ, FK, FL, FM, FN, FO, FP, FQ, FR, FS, FT, FU, FV, FW, FX, FY, FZ, GA, GB, GC, GD, GE, GF, GH, GI, GJ, GK, GL, GM, GN, GO, GP, GQ, GR, GS, GT, GU, GV, GW, GX, GY, GZ, HA, HB, HC, HD, HE, HF, HG, HH, HI, HJ, HK, HL, HM, HN, HO, HP, HQ, HR, HS, HT, HU, HV, HW, HX, HY, HZ, I1, I2, IB, IC, ID, IE, IF, IG, IH, II, IJ, IL, IM, IN, IO, IP, IQ, IR, IS, IT, IU, IV, IW, IX, IY, IZ, JA, JB, JC, JD, JE, JF, JG, JH, LA, LB, LC, LD, LE, LF, LG, LH, LI, LJ, LK, LL, LM, LN, LO, LP, LQ, LR, LS, LT, LU, LV, MA, MAD, MDR, MF, MG, MI, MOP, MP, MR, MS, MT, N2, NI, OA, OB, OC, OD, OE, OF, OG, OH, OI, OJ, OK, OL, OM, ON, OO, OP, OQ, OR, OS, OT, OU, OV, OW, OX, OY, OZ, P1, P2, P3, P4, PA, PAD, PB, PC, PD, PE, PF, PG, PH, PI, PJ, PK, PM, PN, PO, POA, PQ, PR, PS, PT, PW, PX, PY, PZ, RA, RB, RCA, RCR, RE, RF, RH, RI, RL, RM, RP, RS, RV, RW, SB, SE, SF, SG, SI, SN, SO, SPC, SR, SS, ST, SU, SX, SY, SZ, TA, TB, TC, TCP, TCR, TD, TE, TF, TG, TH, TI, TJ, TK, TL, TM, TN, TO, TP, TQ, TR, TS, TT, TU, TV, TW, TX, TY, TZ, UA, UB, UC, UD, UE, UF, UG, UH, UHP, UI, UJ, UK, UL, UM, UN, UO, UP, UQ, UR, US, UT, UU, UV, UW, UX, UY, UZ, VA, VB, VC, VE, VF, VG, VH, VI, VJ, VK, VL, VM, VN, VO, VP, VQ, VR, VS, VT, VU, VV, VW, VX, VY, VZ, WA, WB, WC, WD, WE, WF, WG, WH, WI, WJ, WK, WL, WM, WN, WO, WP, WPA, WQ, WR, WS, WT, WU, WV, WW, WX, WY, WZ, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/RoleCode/@listAgencyID added @listAgencyID {PartyRoleCodeListAgencyIDContentType}{0..1} in type {PartyRoleCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/AuthorizedLegalRegistration added {LegalRegistrationType}{0..*} in type {LegalOrganizationType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/ID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} @@ -4630,7 +4706,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CityName/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeDelivery/UltimateShipToTradeParty/SpecifiedLegalOrganization/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -4712,12 +4788,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/AdditionalReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -4739,11 +4817,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -4769,6 +4848,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TaxPointDate/Date added {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{1..1} in type {DateType}new: @format{string}{0..1} in type {DateType} changed cardinality from 1..1 to 0..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/ApplicableTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/BillingSpecifiedPeriod/CompleteDateTime/DateTime added {dateTime}{0..1} in type {DateTimeType} @@ -4827,12 +4907,14 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/PageID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/PreviousRevisionID added {IDType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/ReceiptDateTime added {DateTimeType}{0..1} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode modifying element: old: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}new: {ReferenceCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAN, AAO, AAP, AAQ, AAR, AAS, AAT, AAU, AAV, AAW, AAX, AAY, AAZ, ABA, ABB, ABC, ABD, ABE, ABF, ABG, ABH, ABI, ABJ, ABK, ABL, ABM, ABN, ABO, ABP, ABQ, ABR, ABS, ABT, ABU, ABV, ABW, ABX, ABY, ABZ, AC, ACA, ACB, ACC, ACD, ACE, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACN, ACO, ACP, ACQ, ACR, ACT, ACU, ACV, ACW, ACX, ACY, ACZ, ADA, ADB, ADC, ADD, ADE, ADF, ADG, ADI, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADT, ADU, ADV, ADW, ADX, ADY, ADZ, AE, AEA, AEB, AEC, AED, AEE, AEF, AEG, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AEQ, AER, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AF, AFA, AFB, AFC, AFD, AFE, AFF, AFG, AFH, AFI, AFJ, AFK, AFL, AFM, AFN, AFO, AFP, AFQ, AFR, AFS, AFT, AFU, AFV, AFW, AFX, AFY, AFZ, AGA, AGB, AGC, AGD, AGE, AGF, AGG, AGH, AGI, AGJ, AGK, AGL, AGM, AGN, AGO, AGP, AGQ, AGR, AGS, AGT, AGU, AGV, AGW, AGX, AGY, AGZ, AHA, AHB, AHC, AHD, AHE, AHF, AHG, AHH, AHI, AHJ, AHK, AHL, AHM, AHN, AHO, AHP, AHQ, AHR, AHS, AHT, AHU, AHV, AHX, AHY, AHZ, AIA, AIB, AIC, AID, AIE, AIF, AIG, AIH, AII, AIJ, AIK, AIL, AIM, AIN, AIO, AIP, AIQ, AIR, AIS, AIT, AIU, AIV, AIW, AIX, AIY, AIZ, AJA, AJB, AJC, AJD, AJE, AJF, AJG, AJH, AJI, AJJ, AJK, AJL, AJM, AJN, AJO, AJP, AJQ, AJR, AJS, AJT, AJU, AJV, AJW, AJX, AJY, AJZ, AKA, AKB, AKC, AKD, AKE, AKF, AKG, AKH, AKI, AKJ, AKK, AKL, AKM, AKN, AKO, AKP, AKQ, AKR, AKS, AKT, AKU, AKV, AKW, AKX, AKY, AKZ, ALA, ALB, ALC, ALD, ALE, ALF, ALG, ALH, ALI, ALJ, ALK, ALL, ALM, ALN, ALO, ALP, ALQ, ALR, ALS, ALT, ALU, ALV, ALW, ALX, ALY, ALZ, AMA, AMB, AMC, AMD, AME, AMF, AMG, AMH, AMI, AMJ, AMK, AML, AMM, AMN, AMO, AMP, AMQ, AMR, AMS, AMT, AMU, AMV, AMW, AMX, AMY, AMZ, ANA, ANB, ANC, AND, ANE, ANF, ANG, ANH, ANI, ANJ, ANK, ANL, ANM, ANN, ANO, ANP, ANQ, ANR, ANS, ANT, ANU, ANV, ANW, ANX, ANY, AOA, AOD, AOE, AOF, AOG, AOH, AOI, AOJ, AOK, AOL, AOM, AON, AOO, AOP, AOQ, AOR, AOS, AOT, AOU, AOV, AOW, AOX, AOY, AOZ, AP, APA, APB, APC, APD, APE, APF, APG, APH, API, APJ, APK, APL, APM, APN, APO, APP, APQ, APR, APS, APT, APU, APV, APW, APX, APY, APZ, AQA, AQB, AQC, AQD, AQE, AQF, AQG, AQH, AQI, AQJ, AQK, AQL, AQM, AQN, AQO, AQP, AQQ, AQR, AQS, AQT, AQU, AQV, AQW, AQX, AQY, AQZ, ARA, ARB, ARC, ARD, ARE, ARF, ARG, ARH, ARI, ARJ, ARK, ARL, ARM, ARN, ARO, ARP, ARQ, ARR, ARS, ART, ARU, ARV, ARW, ARX, ARY, ARZ, ASA, ASB, ASC, ASD, ASE, ASF, ASG, ASH, ASI, ASJ, ASK, ASL, ASM, ASN, ASO, ASP, ASQ, ASR, ASS, AST, ASU, ASV, ASW, ASX, ASY, ASZ, ATA, ATB, ATC, ATD, ATE, ATF, ATG, ATH, ATI, ATJ, ATK, ATL, ATM, ATN, ATO, ATP, ATQ, ATR, ATS, ATT, ATU, ATV, ATW, ATX, ATY, ATZ, AU, AUA, AUB, AUC, AUD, AUE, AUF, AUG, AUH, AUI, AUJ, AUK, AUL, AUM, AUN, AUO, AUP, AUQ, AUR, AUS, AUT, AUU, AUV, AUW, AUX, AUY, AUZ, AV, AVA, AVB, AVC, AVD, AVE, AVF, AVG, AVH, AVI, AVJ, AVK, AVL, AVM, AVN, AVO, AVP, AVQ, AVR, AVS, AVT, AVU, AVV, AVW, AVX, AVY, AVZ, AWA, AWB, AWC, AWD, AWE, AWF, AWG, AWH, AWI, AWJ, AWK, AWL, AWM, AWN, AWO, AWP, AWQ, AWR, AWS, AWT, AWU, AWV, AWW, AWX, AWY, AWZ, AXA, AXB, AXC, AXD, AXE, AXF, AXG, AXH, AXI, AXJ, AXK, AXL, AXM, AXN, AXO, AXP, AXQ, AXR, AXS, BA, BC, BD, BE, BH, BM, BN, BO, BR, BT, BTP, BW, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CBA, CBB, CD, CEC, CED, CFE, CFF, CFO, CG, CH, CK, CKN, CM, CMR, CN, CNO, COF, CP, CR, CRN, CS, CST, CT, CU, CV, CW, CZ, DA, DAN, DB, DI, DL, DM, DQ, DR, EA, EB, ED, EE, EEP, EI, EN, EQ, ER, ERN, ET, EX, FC, FF, FI, FLW, FN, FO, FS, FT, FV, FX, GA, GC, GD, GDN, GN, HS, HWB, IA, IB, ICA, ICE, ICO, II, IL, INB, INN, INO, IP, IS, IT, IV, JB, JE, LA, LAN, LAR, LB, LC, LI, LO, LRC, LS, MA, MB, MF, MG, MH, MR, MRN, MS, MSS, MWB, NA, NF, OH, OI, ON, OP, OR, PB, PC, PD, PE, PF, PI, PK, PL, POR, PP, PQ, PR, PS, PW, PY, RA, RC, RCN, RE, REN, RF, RR, RT, SA, SB, SD, SE, SEA, SF, SH, SI, SM, SN, SP, SQ, SRN, SS, STA, SW, SZ, TB, TCR, TE, TF, TI, TIN, TL, TN, TP, UAR, UC, UCN, UN, UO, URI, VA, VC, VGR, VM, VN, VON, VOR, VP, VR, VS, VT, VV, WE, WM, WN, WR, WS, WY, XA, XC, XP, ZZZ] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/ReferenceTypeCode/@listAgencyID added @listAgencyID {ReferenceCodeListAgencyIDContentType}{0..1} in type {ReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/RevisionID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/SectionName added {TextType}{0..*} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/StatusCode added {DocumentStatusCodeType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/SubordinateLineID added {IDType}{0..1} in type {ReferencedDocumentType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/SubtypeCode added {CodeType}{0..*} in type {ReferencedDocumentType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/TypeCode modifying element: old: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}new: {DocumentCodeType}{0..1} in type {ReferencedDocumentType}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 901, 910, 911, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/URIID/@schemeAgencyID added @schemeAgencyID {token}{0..1} in type {IDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/InvoiceReferencedDocument/URIID/@schemeAgencyName added @schemeAgencyName {string}{0..1} in type {IDType} @@ -4880,11 +4962,12 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculatedRate added {RateType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationMethodCode added {CodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CalculationSequenceNumeric added {NumericType}{0..1} in type {TradeTaxType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode modifying element: old: {TaxCategoryCodeType}{1..1} in type {TradeTaxType}new: {TaxCategoryCodeType}{0..1} in type {TradeTaxType} changed cardinality from 1..1 to 0..1changed enumeration from [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, O, S, Z] to [A, AA, AB, AC, AD, AE, B, C, D, E, F, G, H, I, J, K, L, M, N, O, S, Z] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryCode/@listAgencyID added @listAgencyID {TaxCategoryCodeListAgencyIDContentType}{0..1} in type {TaxCategoryCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CategoryName added {TextType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CurrencyCode added {CurrencyCodeType}{0..1} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/CustomsDutyIndicator added {IndicatorType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode modifying element: old: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}new: {TimeReferenceCodeType}{0..1} in type {TradeTaxType}changed enumeration from [5, 29, 72] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 41, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/DueDateTypeCode/@listAgencyID added @listAgencyID {TimeReferenceCodeListAgencyIDContentType}{0..1} in type {TimeReferenceCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/ExemptionReason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} @@ -4910,6 +4993,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/Date added {date}{0..1} in type {DateType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TaxPointDate/DateString/@format modifying attribute: old: @format{string}{1..1} in type {DateType}new: @format{string}{0..1} in type {DateType} changed cardinality from 1..1 to 0..1 /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/Type added {TextType}{0..1} in type {TradeTaxType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode modifying element: old: {TaxTypeCodeType}{0..1} in type {TradeTaxType}new: {TaxTypeCodeType}{0..1} in type {TradeTaxType}changed enumeration from [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] to [AAA, AAB, AAC, AAD, AAE, AAF, AAG, AAH, AAI, AAJ, AAK, AAL, AAM, AAO, AAP, ADD, BOL, CAP, CAR, COC, CST, CUD, CVD, ENV, EXC, EXP, FET, FRE, GCN, GST, ILL, IMP, IND, LAC, LCN, LDP, LOC, LST, MCA, MCD, OTH, PDB, PDC, PRF, SCN, SSS, STT, SUP, SUR, SWT, TAC, TOT, TOX, TTA, VAD, VAT] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/TypeCode/@listAgencyID added @listAgencyID {TaxTypeCodeListAgencyIDContentType}{0..1} in type {TaxTypeCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/CategoryTradeTax/UnitBasisAmount added {AmountType}{0..*} in type {TradeTaxType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ChargeIndicator modifying element: old: {IndicatorType}{1..1} in type {TradeAllowanceChargeType}new: {IndicatorType}{0..1} in type {TradeAllowanceChargeType} changed cardinality from 1..1 to 0..1 @@ -4918,6 +5002,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/PrepaidIndicator added {IndicatorType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageID added @languageID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/Reason/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode modifying element: old: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}new: {AllowanceChargeReasonCodeType}{0..1} in type {TradeAllowanceChargeType}changed enumeration from [AA, AAA, AAC, AAD, AAE, AAF, AAH, AAI, AAS, AAT, AAV, AAY, AAZ, ABA, ABB, ABC, ABD, ABF, ABK, ABL, ABN, ABR, ABS, ABT, ABU, ACF, ACG, ACH, ACI, ACJ, ACK, ACL, ACM, ACS, ADC, ADE, ADJ, ADK, ADL, ADM, ADN, ADO, ADP, ADQ, ADR, ADT, ADW, ADY, ADZ, AEA, AEB, AEC, AED, AEF, AEH, AEI, AEJ, AEK, AEL, AEM, AEN, AEO, AEP, AES, AET, AEU, AEV, AEW, AEX, AEY, AEZ, AJ, AU, CA, CAB, CAD, CAE, CAF, CAI, CAJ, CAK, CAL, CAM, CAN, CAO, CAP, CAQ, CAR, CAS, CAT, CAU, CAV, CAW, CAX, CAY, CAZ, CD, CG, CS, CT, DAB, DAC, DAD, DAF, DAG, DAH, DAI, DAJ, DAK, DAL, DAM, DAN, DAO, DAP, DAQ, DL, EG, EP, ER, FAA, FAB, FAC, FC, FH, FI, GAA, HAA, HD, HH, IAA, IAB, ID, IF, IR, IS, KO, L1, LA, LAA, LAB, LF, MAE, MI, ML, NAA, OA, PA, PAA, PC, PL, RAB, RAC, RAD, RAF, RE, RF, RH, RV, SA, SAA, SAD, SAE, SAI, SG, SH, SM, SU, TAB, TAC, TT, TV, V1, V2, WH, XAA, YY, ZZZ, 41, 42, 60, 62, 63, 64, 65, 66, 67, 68, 70, 71, 88, 95, 100, 102, 103, 104, 105] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, ZZZ] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/ReasonCode/@listAgencyID added @listAgencyID {AllowanceChargeReasonCodeListAgencyIDContentType}{0..1} in type {AllowanceChargeReasonCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/TypeCode added {AllowanceChargeIdentificationCodeType}{0..1} in type {TradeAllowanceChargeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedLineTradeSettlement/SpecifiedTradeAllowanceCharge/UnitBasisAmount added {AmountType}{0..1} in type {TradeAllowanceChargeType} @@ -5114,6 +5199,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/Name/@languageLocaleID added @languageLocaleID {token}{0..1} in type {TextType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/NetVolumeMeasure added {MeasureType}{0..1} in type {TradeProductType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/NetWeightMeasure added {MeasureType}{0..1} in type {TradeProductType} +/CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/ID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/Name added {TextType}{0..*} in type {TradeCountryType} /CrossIndustryInvoice/SupplyChainTradeTransaction/IncludedSupplyChainTradeLineItem/SpecifiedTradeProduct/OriginTradeCountry/SubordinateTradeCountrySubDivision added {TradeCountrySubDivisionType}{0..*} in type {TradeCountryType} diff --git a/src/test/resources/references/report_FACTUR-X_MINIMUM_to_CrossIndustryInvoice_100pD22B.txt b/src/test/resources/references/report_FACTUR-X_MINIMUM_to_CrossIndustryInvoice_100pD22B.txt index 9123e84..2cd3fa8 100644 --- a/src/test/resources/references/report_FACTUR-X_MINIMUM_to_CrossIndustryInvoice_100pD22B.txt +++ b/src/test/resources/references/report_FACTUR-X_MINIMUM_to_CrossIndustryInvoice_100pD22B.txt @@ -739,6 +739,8 @@ Modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType} new: {CountryIDType}{0..1} in type {TradeAddressType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + removed: [1A, XI] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID @@ -784,6 +786,8 @@ Modifying element: old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] at /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode Modifying element: @@ -834,6 +838,8 @@ Modifying element: old: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} Changed cardinality from 1..1 to 0..1 + Changed enumeration from [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 205, 206, 207, 208, 209, 210, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 382, 391, 392, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 624, 625, 626, 627, 628, 629, 630, 631, 632, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] at /CrossIndustryInvoice/ExchangedDocument/TypeCode diff --git a/src/test/resources/references/report_FACTUR-X_MINIMUM_to_CrossIndustryInvoice_100pD22B_onlyExtensionsReport.txt b/src/test/resources/references/report_FACTUR-X_MINIMUM_to_CrossIndustryInvoice_100pD22B_onlyExtensionsReport.txt index dd6524a..d37eba9 100644 --- a/src/test/resources/references/report_FACTUR-X_MINIMUM_to_CrossIndustryInvoice_100pD22B_onlyExtensionsReport.txt +++ b/src/test/resources/references/report_FACTUR-X_MINIMUM_to_CrossIndustryInvoice_100pD22B_onlyExtensionsReport.txt @@ -60,6 +60,8 @@ In type {ExchangedDocumentType} modifying element: old: {DocumentCodeType}{1..1} in type {ExchangedDocumentType} new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} Extended cardinality from 1..1 to 0..1 + Extended enumeration from [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 205, 206, 207, 208, 209, 210, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 382, 391, 392, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 624, 625, 626, 627, 628, 629, 630, 631, 632, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] In type {HeaderTradeAgreementType} added {ReferencedDocumentType}{0..*} In type {HeaderTradeAgreementType} added {TradeDeliveryTermsType}{0..1} In type {HeaderTradeAgreementType} added {TradePartyType}{0..1} @@ -151,6 +153,8 @@ In type {HeaderTradeSettlementType} modifying element: old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} Extended cardinality from 1..1 to 0..1 + Extended enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + added: [SLE, VED] In type {HeaderTradeSettlementType} modifying element: old: {TradeSettlementHeaderMonetarySummationType}{1..1} in type {HeaderTradeSettlementType} new: {TradeSettlementHeaderMonetarySummationType}{0..1} in type {HeaderTradeSettlementType} diff --git a/src/test/resources/references/report_FACTUR-X_MINIMUM_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt b/src/test/resources/references/report_FACTUR-X_MINIMUM_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt index e69de29..380458e 100644 --- a/src/test/resources/references/report_FACTUR-X_MINIMUM_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt +++ b/src/test/resources/references/report_FACTUR-X_MINIMUM_to_CrossIndustryInvoice_100pD22B_onlyRestrictionsReport.txt @@ -0,0 +1,10 @@ +In type {HeaderTradeSettlementType} modifying element: + old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType} + new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} + Narrowed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] + removed: [SLL] +In type {TradeAddressType} modifying element: + old: {CountryIDType}{1..1} in type {TradeAddressType} + new: {CountryIDType}{0..1} in type {TradeAddressType} + Narrowed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + removed: [1A, XI] diff --git a/src/test/resources/references/report_FACTUR-X_MINIMUM_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt b/src/test/resources/references/report_FACTUR-X_MINIMUM_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt index 5e0ea78..94023cf 100644 --- a/src/test/resources/references/report_FACTUR-X_MINIMUM_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt +++ b/src/test/resources/references/report_FACTUR-X_MINIMUM_to_CrossIndustryInvoice_100pD22B_singleLineReport.txt @@ -28,7 +28,7 @@ /CrossIndustryInvoice/ExchangedDocument/RevisionID added {IDType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/SignatoryDocumentAuthentication added {DocumentAuthenticationType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocument/SubtypeCode added {CodeType}{0..1} in type {ExchangedDocumentType} -/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{1..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/ExchangedDocument/TypeCode modifying element: old: {DocumentCodeType}{1..1} in type {ExchangedDocumentType}new: {DocumentCodeType}{0..1} in type {ExchangedDocumentType} changed cardinality from 1..1 to 0..1changed enumeration from [80, 81, 82, 83, 84, 130, 202, 203, 204, 211, 261, 262, 295, 296, 308, 325, 326, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 420, 456, 457, 458, 527, 575, 623, 633, 751, 780, 875, 876, 877, 935] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 493, 494, 495, 496, 497, 498, 499, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 550, 551, 552, 553, 554, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 610, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 925, 926, 927, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 940, 941, 950, 951, 952, 953, 954, 955, 960, 961, 962, 963, 964, 965, 966, 970, 971, 972, 974, 975, 976, 977, 978, 979, 990, 991, 995, 996, 998] /CrossIndustryInvoice/ExchangedDocument/TypeCode/@listAgencyID added @listAgencyID {DocumentCodeListAgencyIDContentType}{0..1} in type {DocumentCodeType} /CrossIndustryInvoice/ExchangedDocument/VersionID added {IDType}{0..1} in type {ExchangedDocumentType} /CrossIndustryInvoice/ExchangedDocumentContext/ApplicationSpecifiedDocumentContextParameter added {DocumentContextParameterType}{0..*} in type {ExchangedDocumentContextType} @@ -115,7 +115,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CityName added {TextType}{0..1} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/BuyerTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -191,7 +191,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CityID added {IDType}{0..1} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CityName added {TextType}{0..1} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CitySubDivisionName added {TextType}{0..1} in type {TradeAddressType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID modifying element: old: {CountryIDType}{1..1} in type {TradeAddressType}new: {CountryIDType}{0..1} in type {TradeAddressType} changed cardinality from 1..1 to 0..1changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountryName added {TextType}{0..*} in type {TradeAddressType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeAgreement/SellerTradeParty/PostalTradeAddress/CountrySubDivisionID added {IDType}{0..1} in type {TradeAddressType} @@ -264,7 +264,7 @@ /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringAgreementReferencedDocument added {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/FactoringListReferencedDocument added {ReferencedDocumentType}{0..*} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceApplicableTradeCurrencyExchange added {TradeCurrencyExchangeType}{0..1} in type {HeaderTradeSettlementType} -/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} changed cardinality from 1..1 to 0..1 +/CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode modifying element: old: {CurrencyCodeType}{1..1} in type {HeaderTradeSettlementType}new: {CurrencyCodeType}{0..1} in type {HeaderTradeSettlementType} changed cardinality from 1..1 to 0..1changed enumeration from [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] to [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CAD, CDF, CHE, CHF, CHW, CLF, CLP, CNY, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, USN, UYI, UYU, UYW, UZS, VED, VES, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XOF, XPD, XPF, XPT, XSU, XTS, XUA, XXX, YER, ZAR, ZMW, ZWL] /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceCurrencyCode/@listAgencyID added @listAgencyID {CurrencyCodeListAgencyIDContentType}{0..1} in type {CurrencyCodeType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceDateTime added {DateTimeType}{0..1} in type {HeaderTradeSettlementType} /CrossIndustryInvoice/SupplyChainTradeTransaction/ApplicableHeaderTradeSettlement/InvoiceIssuerReference added {TextType}{0..1} in type {HeaderTradeSettlementType} diff --git a/src/test/resources/references/report_contentChange1_to_contentChange2.txt b/src/test/resources/references/report_contentChange1_to_contentChange2.txt new file mode 100644 index 0000000..0a93783 --- /dev/null +++ b/src/test/resources/references/report_contentChange1_to_contentChange2.txt @@ -0,0 +1,42 @@ +**** XSD COMPARISON **** + old grammar: contentChange1.xsd + new grammar: contentChange2.xsd + + +Added attribute @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} + in ID at /OriginTradeCountry/ID/@schemeAgencyID + +Modifying element: + old: {CountryIDType}{0..1} in type {TradeCountryType} + new: {CountryIDType}{0..1} in type {TradeCountryType} + Changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + removed: [1A, XI] + at /OriginTradeCountry/ID + + + +**** STATISTIC **** + + +ELEMENTS: + + Added elements in XSD: 0 + Added elements in XML: 0 + + Modified elements in XSD: 1 + Modified elements in XML: 1 + + Removed elements from XSD: 0 + Removed elements from XML: 0 + + +ATTRIBUTES: + + Added attributes in XSD: 1 + Added attributes in XML: 1 + + Modified attributes in XSD: 0 + Modified attributes in XML: 0 + + Removed attributes from XSD: 0 + Removed attributes from XML: 0 \ No newline at end of file diff --git a/src/test/resources/references/report_contentChange1_to_contentChange2_onlyExtensionsReport.txt b/src/test/resources/references/report_contentChange1_to_contentChange2_onlyExtensionsReport.txt new file mode 100644 index 0000000..910db78 --- /dev/null +++ b/src/test/resources/references/report_contentChange1_to_contentChange2_onlyExtensionsReport.txt @@ -0,0 +1 @@ +In type {CountryIDType} added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} diff --git a/src/test/resources/references/report_contentChange1_to_contentChange2_onlyRestrictionsReport.txt b/src/test/resources/references/report_contentChange1_to_contentChange2_onlyRestrictionsReport.txt new file mode 100644 index 0000000..1ffdf9c --- /dev/null +++ b/src/test/resources/references/report_contentChange1_to_contentChange2_onlyRestrictionsReport.txt @@ -0,0 +1,5 @@ +In type {TradeCountryType} modifying element: + old: {CountryIDType}{0..1} in type {TradeCountryType} + new: {CountryIDType}{0..1} in type {TradeCountryType} + Narrowed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] + removed: [1A, XI] diff --git a/src/test/resources/references/report_contentChange1_to_contentChange2_singleLineReport.txt b/src/test/resources/references/report_contentChange1_to_contentChange2_singleLineReport.txt new file mode 100644 index 0000000..22ac697 --- /dev/null +++ b/src/test/resources/references/report_contentChange1_to_contentChange2_singleLineReport.txt @@ -0,0 +1,2 @@ +/OriginTradeCountry/ID modifying element: old: {CountryIDType}{0..1} in type {TradeCountryType}new: {CountryIDType}{0..1} in type {TradeCountryType}changed enumeration from [1A, AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, XI, YE, YT, ZA, ZM, ZW] to [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW] +/OriginTradeCountry/ID/@schemeAgencyID added @schemeAgencyID {CountryIDSchemeAgencyIDContentType}{0..1} in type {CountryIDType} diff --git a/src/test/resources/references/report_facets1_to_facets2.txt b/src/test/resources/references/report_facets1_to_facets2.txt index 60d92b0..34b5014 100644 --- a/src/test/resources/references/report_facets1_to_facets2.txt +++ b/src/test/resources/references/report_facets1_to_facets2.txt @@ -118,18 +118,21 @@ Modifying element: old: {FacetsOwner2}{0..1} in type {FacetsOwner2} new: {FacetsOwner2}{0..1} in type {FacetsOwner2} Changed enumeration from [Audi, Golf, BMW] to [VW, Porsche, Lamborghini] + added: [VW, Porsche, Lamborghini] at /MyRootElement2/car Modifying element: old: {FacetsOwner2}{0..1} in type {FacetsOwner2} new: {FacetsOwner2}{0..1} in type {FacetsOwner2} Changed enumeration from [Audi, Golf] to [Audi, Golf, BMW, Porsche] + added: [BMW, Porsche] at /MyRootElement2/carGettingBigger Modifying element: old: {FacetsOwner2}{0..1} in type {FacetsOwner2} new: {FacetsOwner2}{0..1} in type {FacetsOwner2} Changed enumeration from [Audi, Golf, BMW, Porsche] to [Audi, Golf] + removed: [BMW, Porsche] at /MyRootElement2/carGettingSmaller Modifying element: diff --git a/src/test/resources/references/report_facets1_to_facets2_onlyExtensionsReport.txt b/src/test/resources/references/report_facets1_to_facets2_onlyExtensionsReport.txt index a5a2535..1b7ed6c 100644 --- a/src/test/resources/references/report_facets1_to_facets2_onlyExtensionsReport.txt +++ b/src/test/resources/references/report_facets1_to_facets2_onlyExtensionsReport.txt @@ -66,10 +66,12 @@ In type {FacetsOwner2} modifying element: old: {FacetsOwner2}{0..1} in type {FacetsOwner2} new: {FacetsOwner2}{0..1} in type {FacetsOwner2} Extended enumeration from [Audi, Golf, BMW] to [VW, Porsche, Lamborghini] + added: [VW, Porsche, Lamborghini] In type {FacetsOwner2} modifying element: old: {FacetsOwner2}{0..1} in type {FacetsOwner2} new: {FacetsOwner2}{0..1} in type {FacetsOwner2} Extended enumeration from [Audi, Golf] to [Audi, Golf, BMW, Porsche] + added: [BMW, Porsche] In type {FacetsOwner2} modifying element: old: {FacetsOwner2}{0..1} in type {FacetsOwner2} new: {FacetsOwner2}{0..1} in type {FacetsOwner2} diff --git a/src/test/resources/references/report_facets1_to_facets2_onlyRestrictionsReport.txt b/src/test/resources/references/report_facets1_to_facets2_onlyRestrictionsReport.txt index 007b706..993bb9a 100644 --- a/src/test/resources/references/report_facets1_to_facets2_onlyRestrictionsReport.txt +++ b/src/test/resources/references/report_facets1_to_facets2_onlyRestrictionsReport.txt @@ -64,10 +64,12 @@ In type {FacetsOwner2} modifying element: old: {FacetsOwner2}{0..1} in type {FacetsOwner2} new: {FacetsOwner2}{0..1} in type {FacetsOwner2} Narrowed enumeration from [Audi, Golf, BMW] to [VW, Porsche, Lamborghini] + removed: [Audi, Golf, BMW] In type {FacetsOwner2} modifying element: old: {FacetsOwner2}{0..1} in type {FacetsOwner2} new: {FacetsOwner2}{0..1} in type {FacetsOwner2} Narrowed enumeration from [Audi, Golf, BMW, Porsche] to [Audi, Golf] + removed: [BMW, Porsche] In type {FacetsOwner2} modifying element: old: {FacetsOwner2}{0..1} in type {FacetsOwner2} new: {FacetsOwner2}{0..1} in type {FacetsOwner2} diff --git a/src/test/resources/references/report_facets2_to_facets1.txt b/src/test/resources/references/report_facets2_to_facets1.txt index 9cea4ed..e9f2ac2 100644 --- a/src/test/resources/references/report_facets2_to_facets1.txt +++ b/src/test/resources/references/report_facets2_to_facets1.txt @@ -118,18 +118,21 @@ Modifying element: old: {FacetsOwner2}{0..1} in type {FacetsOwner2} new: {FacetsOwner2}{0..1} in type {FacetsOwner2} Changed enumeration from [VW, Porsche, Lamborghini] to [Audi, Golf, BMW] + added: [Audi, Golf, BMW] at /MyRootElement2/car Modifying element: old: {FacetsOwner2}{0..1} in type {FacetsOwner2} new: {FacetsOwner2}{0..1} in type {FacetsOwner2} Changed enumeration from [Audi, Golf, BMW, Porsche] to [Audi, Golf] + removed: [BMW, Porsche] at /MyRootElement2/carGettingBigger Modifying element: old: {FacetsOwner2}{0..1} in type {FacetsOwner2} new: {FacetsOwner2}{0..1} in type {FacetsOwner2} Changed enumeration from [Audi, Golf] to [Audi, Golf, BMW, Porsche] + added: [BMW, Porsche] at /MyRootElement2/carGettingSmaller Modifying element: diff --git a/src/test/resources/references/report_facets2_to_facets1_onlyExtensionsReport.txt b/src/test/resources/references/report_facets2_to_facets1_onlyExtensionsReport.txt index 9586299..84e76e8 100644 --- a/src/test/resources/references/report_facets2_to_facets1_onlyExtensionsReport.txt +++ b/src/test/resources/references/report_facets2_to_facets1_onlyExtensionsReport.txt @@ -64,10 +64,12 @@ In type {FacetsOwner2} modifying element: old: {FacetsOwner2}{0..1} in type {FacetsOwner2} new: {FacetsOwner2}{0..1} in type {FacetsOwner2} Extended enumeration from [VW, Porsche, Lamborghini] to [Audi, Golf, BMW] + added: [Audi, Golf, BMW] In type {FacetsOwner2} modifying element: old: {FacetsOwner2}{0..1} in type {FacetsOwner2} new: {FacetsOwner2}{0..1} in type {FacetsOwner2} Extended enumeration from [Audi, Golf] to [Audi, Golf, BMW, Porsche] + added: [BMW, Porsche] In type {FacetsOwner2} modifying element: old: {FacetsOwner2}{0..1} in type {FacetsOwner2} new: {FacetsOwner2}{0..1} in type {FacetsOwner2} diff --git a/src/test/resources/references/report_facets2_to_facets1_onlyRestrictionsReport.txt b/src/test/resources/references/report_facets2_to_facets1_onlyRestrictionsReport.txt index 7dca17b..3ab9140 100644 --- a/src/test/resources/references/report_facets2_to_facets1_onlyRestrictionsReport.txt +++ b/src/test/resources/references/report_facets2_to_facets1_onlyRestrictionsReport.txt @@ -66,10 +66,12 @@ In type {FacetsOwner2} modifying element: old: {FacetsOwner2}{0..1} in type {FacetsOwner2} new: {FacetsOwner2}{0..1} in type {FacetsOwner2} Narrowed enumeration from [VW, Porsche, Lamborghini] to [Audi, Golf, BMW] + removed: [VW, Porsche, Lamborghini] In type {FacetsOwner2} modifying element: old: {FacetsOwner2}{0..1} in type {FacetsOwner2} new: {FacetsOwner2}{0..1} in type {FacetsOwner2} Narrowed enumeration from [Audi, Golf, BMW, Porsche] to [Audi, Golf] + removed: [BMW, Porsche] In type {FacetsOwner2} modifying element: old: {FacetsOwner2}{0..1} in type {FacetsOwner2} new: {FacetsOwner2}{0..1} in type {FacetsOwner2} diff --git a/src/test/resources/references/report_fixedValueVariant1_to_fixedValueVariant2.txt b/src/test/resources/references/report_fixedValueVariant1_to_fixedValueVariant2.txt index 368b929..2020af0 100644 --- a/src/test/resources/references/report_fixedValueVariant1_to_fixedValueVariant2.txt +++ b/src/test/resources/references/report_fixedValueVariant1_to_fixedValueVariant2.txt @@ -6,9 +6,17 @@ Modifying attribute: old: @listAgencyID{CargoOperationalCategoryCodeListAgencyIDContentType}{0..1} in type {CargoOperationalCategoryCodeType} new: @listAgencyID{CargoOperationalCategoryCodeListAgencyIDContentType}{0..1} in type {CargoOperationalCategoryCodeType} - Changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) + Changed enumeration from [] to [6] + added: [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) at /OperationalCategoryCode/@listAgencyID +Modifying element: + old: {CargoOperationalCategoryCodeType}{1..1} in type {null} + new: {CargoOperationalCategoryCodeType}{1..1} in type {null} + Changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] + added: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] + at /OperationalCategoryCode + Removed attribute @listID {token}{0..1} in type {CargoOperationalCategoryCodeType} in OperationalCategoryCode at /OperationalCategoryCode/@listID @@ -28,8 +36,8 @@ ELEMENTS: Added elements in XSD: 0 Added elements in XML: 0 - Modified elements in XSD: 0 - Modified elements in XML: 0 + Modified elements in XSD: 1 + Modified elements in XML: 1 Removed elements from XSD: 0 Removed elements from XML: 0 diff --git a/src/test/resources/references/report_fixedValueVariant1_to_fixedValueVariant2_onlyRestrictionsReport.txt b/src/test/resources/references/report_fixedValueVariant1_to_fixedValueVariant2_onlyRestrictionsReport.txt index 5869ac2..dfb384b 100644 --- a/src/test/resources/references/report_fixedValueVariant1_to_fixedValueVariant2_onlyRestrictionsReport.txt +++ b/src/test/resources/references/report_fixedValueVariant1_to_fixedValueVariant2_onlyRestrictionsReport.txt @@ -5,3 +5,7 @@ In type {CargoOperationalCategoryCodeType} modifying attribute: In type {CargoOperationalCategoryCodeType} removed @listID {token}{0..1} In type {CargoOperationalCategoryCodeType} removed @listVersionID {token}{0..1} In type {CargoOperationalCategoryCodeType} removed @name {string}{0..1} +In type {null} modifying element: + old: {CargoOperationalCategoryCodeType}{1..1} in type {null} + new: {CargoOperationalCategoryCodeType}{1..1} in type {null} + New restriction by enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] diff --git a/src/test/resources/references/report_fixedValueVariant1_to_fixedValueVariant2_singleLineReport.txt b/src/test/resources/references/report_fixedValueVariant1_to_fixedValueVariant2_singleLineReport.txt index 4236ee9..2567864 100644 --- a/src/test/resources/references/report_fixedValueVariant1_to_fixedValueVariant2_singleLineReport.txt +++ b/src/test/resources/references/report_fixedValueVariant1_to_fixedValueVariant2_singleLineReport.txt @@ -1,3 +1,4 @@ +/OperationalCategoryCode modifying element: old: {CargoOperationalCategoryCodeType}{1..1} in type {null}new: {CargoOperationalCategoryCodeType}{1..1} in type {null}changed enumeration from [] to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] /OperationalCategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{CargoOperationalCategoryCodeListAgencyIDContentType}{0..1} in type {CargoOperationalCategoryCodeType}new: @listAgencyID{CargoOperationalCategoryCodeListAgencyIDContentType}{0..1} in type {CargoOperationalCategoryCodeType}changed enumeration from [] to [6] (no semantic change, as new single enumeration value existed as previous fixed default: 6) /OperationalCategoryCode/@listID removed @listID {token}{0..1} in type {CargoOperationalCategoryCodeType} /OperationalCategoryCode/@listVersionID removed @listVersionID {token}{0..1} in type {CargoOperationalCategoryCodeType} diff --git a/src/test/resources/references/report_fixedValueVariant2_to_fixedValueVariant1.txt b/src/test/resources/references/report_fixedValueVariant2_to_fixedValueVariant1.txt index 0d886a9..ed1bb6a 100644 --- a/src/test/resources/references/report_fixedValueVariant2_to_fixedValueVariant1.txt +++ b/src/test/resources/references/report_fixedValueVariant2_to_fixedValueVariant1.txt @@ -15,9 +15,17 @@ Added attribute @name {string}{0..1} in type {CargoOperationalCategoryCodeType} Modifying attribute: old: @listAgencyID{CargoOperationalCategoryCodeListAgencyIDContentType}{0..1} in type {CargoOperationalCategoryCodeType} new: @listAgencyID{CargoOperationalCategoryCodeListAgencyIDContentType}{0..1} in type {CargoOperationalCategoryCodeType} - Changed enumeration from [6] to [] (no semantic change, as removed single enumeration value still exists as fixed default: 6) + Changed enumeration from [6] to [] + removed: [6] (no semantic change, as removed single enumeration value still exists as fixed default: 6) at /OperationalCategoryCode/@listAgencyID +Modifying element: + old: {CargoOperationalCategoryCodeType}{1..1} in type {null} + new: {CargoOperationalCategoryCodeType}{1..1} in type {null} + Changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] to [] + removed: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] + at /OperationalCategoryCode + **** STATISTIC **** @@ -28,8 +36,8 @@ ELEMENTS: Added elements in XSD: 0 Added elements in XML: 0 - Modified elements in XSD: 0 - Modified elements in XML: 0 + Modified elements in XSD: 1 + Modified elements in XML: 1 Removed elements from XSD: 0 Removed elements from XML: 0 diff --git a/src/test/resources/references/report_fixedValueVariant2_to_fixedValueVariant1_onlyRestrictionsReport.txt b/src/test/resources/references/report_fixedValueVariant2_to_fixedValueVariant1_onlyRestrictionsReport.txt index 40929b5..5395573 100644 --- a/src/test/resources/references/report_fixedValueVariant2_to_fixedValueVariant1_onlyRestrictionsReport.txt +++ b/src/test/resources/references/report_fixedValueVariant2_to_fixedValueVariant1_onlyRestrictionsReport.txt @@ -1,4 +1,10 @@ In type {CargoOperationalCategoryCodeType} modifying attribute: old: @listAgencyID{CargoOperationalCategoryCodeListAgencyIDContentType}{0..1} in type {CargoOperationalCategoryCodeType} new: @listAgencyID{CargoOperationalCategoryCodeListAgencyIDContentType}{0..1} in type {CargoOperationalCategoryCodeType} - Narrowed enumeration from [6] to [] (no semantic change, as removed single enumeration value still exists as fixed default: 6) + Narrowed enumeration from [6] to [] + removed: [6] (no semantic change, as removed single enumeration value still exists as fixed default: 6) +In type {null} modifying element: + old: {CargoOperationalCategoryCodeType}{1..1} in type {null} + new: {CargoOperationalCategoryCodeType}{1..1} in type {null} + Narrowed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] to [] + removed: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] diff --git a/src/test/resources/references/report_fixedValueVariant2_to_fixedValueVariant1_singleLineReport.txt b/src/test/resources/references/report_fixedValueVariant2_to_fixedValueVariant1_singleLineReport.txt index 4c5e73d..9304e2c 100644 --- a/src/test/resources/references/report_fixedValueVariant2_to_fixedValueVariant1_singleLineReport.txt +++ b/src/test/resources/references/report_fixedValueVariant2_to_fixedValueVariant1_singleLineReport.txt @@ -1,3 +1,4 @@ +/OperationalCategoryCode modifying element: old: {CargoOperationalCategoryCodeType}{1..1} in type {null}new: {CargoOperationalCategoryCodeType}{1..1} in type {null}changed enumeration from [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] to [] /OperationalCategoryCode/@listAgencyID modifying attribute: old: @listAgencyID{CargoOperationalCategoryCodeListAgencyIDContentType}{0..1} in type {CargoOperationalCategoryCodeType}new: @listAgencyID{CargoOperationalCategoryCodeListAgencyIDContentType}{0..1} in type {CargoOperationalCategoryCodeType}changed enumeration from [6] to [] (no semantic change, as removed single enumeration value still exists as fixed default: 6) /OperationalCategoryCode/@listID added @listID {token}{0..1} in type {CargoOperationalCategoryCodeType} /OperationalCategoryCode/@listVersionID added @listVersionID {token}{0..1} in type {CargoOperationalCategoryCodeType} diff --git a/src/test/resources/xsd/contentChange1.xsd b/src/test/resources/xsd/contentChange1.xsd new file mode 100644 index 0000000..1cbaa0b --- /dev/null +++ b/src/test/resources/xsd/contentChange1.xsd @@ -0,0 +1,271 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/test/resources/xsd/contentChange2.xsd b/src/test/resources/xsd/contentChange2.xsd new file mode 100644 index 0000000..5c90cde --- /dev/null +++ b/src/test/resources/xsd/contentChange2.xsd @@ -0,0 +1,298 @@ + + + + + + + Origin Country + + + + + Trade Country + + + + + Code + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file